File tree 6 files changed +16
-4
lines changed
6 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ add_library(${NAME} OBJECT ${_SRCS})
20
20
set_target_properties (${NAME} PROPERTIES
21
21
POSITION_INDEPENDENT_CODE ON
22
22
)
23
+ if (MSVC AND BUILD_SHARED_LIBS )
24
+ target_compile_definitions (${NAME} PUBLIC "OR_BUILD_DLL" )
25
+ target_compile_definitions (${NAME} PRIVATE "OR_EXPORT" )
26
+ endif ()
23
27
target_include_directories (${NAME} PRIVATE
24
28
${PROJECT_SOURCE_DIR}
25
29
${PROJECT_BINARY_DIR} )
Original file line number Diff line number Diff line change @@ -2291,7 +2291,7 @@ class LocalSearchFilterManager : public BaseObject {
2291
2291
int64_t accepted_value_;
2292
2292
};
2293
2293
2294
- class IntVarLocalSearchFilter : public LocalSearchFilter {
2294
+ class OR_DLL IntVarLocalSearchFilter : public LocalSearchFilter {
2295
2295
public:
2296
2296
explicit IntVarLocalSearchFilter (const std::vector<IntVar*>& vars);
2297
2297
~IntVarLocalSearchFilter () override ;
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ class PathsMetadata {
251
251
std::vector<int64_t > path_of_node_;
252
252
};
253
253
254
- class RoutingModel {
254
+ class OR_DLL RoutingModel {
255
255
public:
256
256
// / Types of precedence policy applied to pickup and delivery pairs.
257
257
enum PickupAndDeliveryPolicy {
@@ -2837,7 +2837,7 @@ class RoutingModel {
2837
2837
};
2838
2838
2839
2839
// / Routing model visitor.
2840
- class RoutingModelVisitor : public BaseObject {
2840
+ class OR_DLL RoutingModelVisitor : public BaseObject {
2841
2841
public:
2842
2842
// / Constraint types.
2843
2843
static const char kLightElement [];
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ set_target_properties(${NAME} PROPERTIES
21
21
LINKER_LANGUAGE CXX
22
22
POSITION_INDEPENDENT_CODE ON
23
23
)
24
+ if (MSVC AND BUILD_SHARED_LIBS )
25
+ target_compile_definitions (${NAME} PUBLIC "OR_BUILD_DLL" )
26
+ target_compile_definitions (${NAME} PRIVATE "OR_EXPORT" )
27
+ endif ()
24
28
target_include_directories (${NAME} PRIVATE
25
29
${PROJECT_SOURCE_DIR}
26
30
${PROJECT_BINARY_DIR} )
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ add_library(${NAME} OBJECT ${_SRCS})
29
29
set_target_properties (${NAME} PROPERTIES
30
30
POSITION_INDEPENDENT_CODE ON
31
31
)
32
+ if (MSVC AND BUILD_SHARED_LIBS )
33
+ target_compile_definitions (${NAME} PUBLIC "OR_BUILD_DLL" )
34
+ target_compile_definitions (${NAME} PRIVATE "OR_EXPORT" )
35
+ endif ()
32
36
target_include_directories (${NAME} PUBLIC
33
37
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR} >
34
38
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR} >)
Original file line number Diff line number Diff line change @@ -1469,7 +1469,7 @@ class MPConstraint {
1469
1469
* instead. We need to figure out how to deal with the subtleties of
1470
1470
* the default values.
1471
1471
*/
1472
- class MPSolverParameters {
1472
+ class OR_DLL MPSolverParameters {
1473
1473
public:
1474
1474
// / Enumeration of parameters that take continuous values.
1475
1475
enum DoubleParam {
You can’t perform that action at this time.
0 commit comments