From 6d6233bf4c8dd0d320bab74ab007e5bceacb7c51 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Tue, 26 Jun 2018 16:24:19 +0200 Subject: [PATCH] dotnet: cleaning $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL) --- makefiles/Makefile.dotnet.mk | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/makefiles/Makefile.dotnet.mk b/makefiles/Makefile.dotnet.mk index 6c98f455de..5c2699d75e 100644 --- a/makefiles/Makefile.dotnet.mk +++ b/makefiles/Makefile.dotnet.mk @@ -186,7 +186,15 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \ $(GEN_DIR)/com/google/ortools/constraintsolver/RoutingEnums.g.cs\ $(GEN_DIR)/com/google/ortools/sat/CpModel.g.cs \ $(OR_TOOLS_LIBS) - $(DYNAMIC_LD) $(LD_OUT)$(LIB_DIR)$S$(LIB_PREFIX)$(CLR_ORTOOLS_DLL_NAME).$(SWIG_LIB_SUFFIX) $(OBJ_DIR)/swig/linear_solver_csharp_wrap.$O $(OBJ_DIR)/swig/sat_csharp_wrap.$O $(OBJ_DIR)/swig/constraint_solver_csharp_wrap.$O $(OBJ_DIR)/swig/knapsack_solver_csharp_wrap.$O $(OBJ_DIR)/swig/graph_csharp_wrap.$O $(OR_TOOLS_LNK) $(OR_TOOLS_LDFLAGS) + $(DYNAMIC_LD) \ + $(LD_OUT)$(LIB_DIR)$S$(LIB_PREFIX)$(CLR_ORTOOLS_DLL_NAME).$(SWIG_LIB_SUFFIX) \ + $(OBJ_DIR)$Sswig$Slinear_solver_csharp_wrap.$O \ + $(OBJ_DIR)$Sswig$Ssat_csharp_wrap.$O \ + $(OBJ_DIR)$Sswig$Sconstraint_solver_csharp_wrap.$O \ + $(OBJ_DIR)$Sswig$Sknapsack_solver_csharp_wrap.$O \ + $(OBJ_DIR)$Sswig$Sgraph_csharp_wrap.$O \ + $(OR_TOOLS_LNK) \ + $(OR_TOOLS_LDFLAGS) "$(DOTNET_EXECUTABLE)" build -c Debug ortools$Sdotnet$S$(ORTOOLS_DLL_NAME)$S$(ORTOOLS_DLL_NAME).csproj ifeq ($(SYSTEM),win) $(COPY) ortools$Sdotnet$S$(ORTOOLS_DLL_NAME)$Sbin$Sx64$SDebug$Snetstandard2.0$S*.* $(BIN_DIR)