Files
ortools-clone/cmake/cpp.cmake

374 lines
12 KiB
CMake
Raw Normal View History

if(NOT BUILD_CXX)
return()
endif()
# Check dependencies
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
set(THREAD_PREFER_PTHREAD_FLAG TRUE)
find_package(Threads REQUIRED)
# Tell find_package() to try “Config” mode before “Module” mode if no mode was specified.
# This should avoid find_package() to first find our FindXXX.cmake modules if
# distro package already provide a CMake config file...
set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE)
# libprotobuf force us to depends on ZLIB::ZLIB target
2020-07-01 21:01:16 +02:00
if(NOT BUILD_ZLIB)
find_package(ZLIB REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_absl)
2020-01-29 17:35:51 +01:00
find_package(absl REQUIRED)
endif()
2020-03-02 09:46:15 +01:00
set(ABSL_DEPS
absl::base
2020-05-07 11:32:13 +02:00
absl::cord
2020-03-02 09:46:15 +01:00
absl::random_random
absl::raw_hash_set
absl::hash
absl::memory
absl::meta
2020-05-07 11:32:13 +02:00
absl::status
2020-03-02 09:46:15 +01:00
absl::str_format
absl::strings
absl::synchronization
absl::any
)
2020-01-29 17:35:51 +01:00
set(GFLAGS_USE_TARGET_NAMESPACE TRUE)
2020-07-01 21:01:16 +02:00
if(NOT BUILD_gflags)
2020-01-29 17:35:51 +01:00
find_package(gflags REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_glog)
2020-01-29 17:35:51 +01:00
find_package(glog REQUIRED)
endif()
2020-07-01 21:01:16 +02:00
if(NOT BUILD_Protobuf)
2020-01-29 17:35:51 +01:00
find_package(Protobuf REQUIRED)
2020-07-01 21:01:16 +02:00
else()
if(${CMAKE_VERSION} VERSION_LESS "3.18")
find_package(Protobuf REQUIRED CONFIG)
endif()
if(NOT TARGET protobuf::libprotobuf)
message(FATAL_ERROR "protobuf not builded")
endif()
2020-01-29 17:35:51 +01:00
endif()
2020-02-06 18:32:40 +01:00
if(USE_COINOR)
2020-07-01 21:01:16 +02:00
if(NOT BUILD_CoinUtils)
2020-02-06 18:32:40 +01:00
find_package(CoinUtils REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_Osi)
2020-02-06 18:32:40 +01:00
find_package(Osi REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_Clp)
2020-02-06 18:32:40 +01:00
find_package(Clp REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_Cgl)
2020-02-06 18:32:40 +01:00
find_package(Cgl REQUIRED)
endif()
2020-01-29 17:35:51 +01:00
2020-07-01 21:01:16 +02:00
if(NOT BUILD_Cbc)
2020-02-06 18:32:40 +01:00
find_package(Cbc REQUIRED)
endif()
set(COINOR_DEPS Coin::CbcSolver Coin::OsiCbc Coin::ClpSolver Coin::OsiClp)
2020-01-29 17:35:51 +01:00
endif()
# Check optional Dependencies
if(USE_CPLEX)
find_package(CPLEX REQUIRED)
2020-03-02 09:46:15 +01:00
set(CPLEX_DEP CPLEX::CPLEX)
endif()
2020-01-29 17:35:51 +01:00
if(USE_SCIP)
find_package(SCIP REQUIRED)
2020-03-02 09:46:15 +01:00
set(SCIP_DEP SCIP::SCIP)
endif()
2020-01-29 17:35:51 +01:00
if(USE_XPRESS)
find_package(XPRESS REQUIRED)
2020-03-02 09:46:15 +01:00
set(XPRESS_DEP XPRESS::XPRESS)
endif()
# Main Target
add_library(${PROJECT_NAME} "")
2020-05-17 18:23:08 +02:00
# Xcode fails to build if library doesn't contains at least one source file.
if(XCODE)
2020-05-27 17:13:48 +02:00
file(GENERATE
OUTPUT ${PROJECT_BINARY_DIR}/${PROJECT_NAME}/version.cpp
CONTENT "namespace {char* version = \"${PROJECT_VERSION}\";}")
target_sources(${PROJECT_NAME} PRIVATE ${PROJECT_BINARY_DIR}/${PROJECT_NAME}/version.cpp)
2020-05-17 18:23:08 +02:00
endif()
2020-01-29 17:35:51 +01:00
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS
"USE_BOP" # enable BOP support
"USE_GLOP" # enable GLOP support
)
2020-02-06 18:32:40 +01:00
if(USE_COINOR)
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS
"USE_CBC" # enable COIN-OR CBC support
"USE_CLP" # enable COIN-OR CLP support
)
endif()
if(USE_CPLEX)
2020-01-29 17:35:51 +01:00
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS "USE_CPLEX")
endif()
if(USE_SCIP)
2020-01-29 17:35:51 +01:00
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS "USE_SCIP")
endif()
if(USE_XPRESS)
2020-01-29 17:35:51 +01:00
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS "USE_XPRESS")
endif()
if(WIN32)
list(APPEND OR_TOOLS_COMPILE_DEFINITIONS "__WIN32__")
endif()
if(MSVC)
2020-02-07 07:58:01 +01:00
list(APPEND OR_TOOLS_COMPILE_OPTIONS
2020-01-29 17:35:51 +01:00
"/bigobj" # Allow big object
"/DNOMINMAX"
"/DWIN32_LEAN_AND_MEAN=1"
"/D_CRT_SECURE_NO_WARNINGS"
"/D_CRT_SECURE_NO_DEPRECATE"
"/MP" # Build with multiple processes
)
# Prefer /MD over /MT and add NDEBUG in Release
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
2020-02-07 07:58:01 +01:00
list(APPEND OR_TOOLS_COMPILE_OPTIONS "/MDd")
else()
2020-02-07 07:58:01 +01:00
list(APPEND OR_TOOLS_COMPILE_OPTIONS "/MD" "/DNDEBUG")
endif()
# MSVC warning suppressions
2020-02-07 07:58:01 +01:00
list(APPEND OR_TOOLS_COMPILE_OPTIONS
2020-01-29 17:35:51 +01:00
"/wd4005" # 'macro-redefinition'
"/wd4018" # 'expression' : signed/unsigned mismatch
"/wd4065" # switch statement contains 'default' but no 'case' labels
"/wd4068" # 'unknown pragma'
"/wd4101" # 'identifier' : unreferenced local variable
"/wd4146" # unary minus operator applied to unsigned type, result still unsigned
"/wd4200" # nonstandard extension used : zero-sized array in struct/union
"/wd4244" # 'conversion' conversion from 'type1' to 'type2', possible loss of data
"/wd4251" # 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2'
"/wd4267" # 'var' : conversion from 'size_t' to 'type', possible loss of data
"/wd4305" # 'identifier' : truncation from 'type1' to 'type2'
"/wd4307" # 'operator' : integral constant overflow
"/wd4309" # 'conversion' : truncation of constant value
"/wd4334" # 'operator' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
"/wd4355" # 'this' : used in base member initializer list
"/wd4477" # 'fwprintf' : format string '%s' requires an argument of type 'wchar_t *'
"/wd4506" # no definition for inline function 'function'
"/wd4715" # function' : not all control paths return a value
"/wd4800" # 'type' : forcing value to bool 'true' or 'false' (performance warning)
"/wd4996" # The compiler encountered a deprecated declaration.
)
else()
2020-02-07 07:58:01 +01:00
list(APPEND OR_TOOLS_COMPILE_OPTIONS "-fwrapv")
endif()
2017-06-28 15:45:56 +05:30
2020-01-29 17:35:51 +01:00
# Includes
target_include_directories(${PROJECT_NAME} INTERFACE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}>
$<INSTALL_INTERFACE:include>
)
# Compile options
2020-02-21 19:37:50 +01:00
set_target_properties(${PROJECT_NAME} PROPERTIES
CXX_STANDARD 11
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
)
2020-02-21 19:37:50 +01:00
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11)
2020-01-29 17:35:51 +01:00
target_compile_definitions(${PROJECT_NAME} PUBLIC ${OR_TOOLS_COMPILE_DEFINITIONS})
target_compile_options(${PROJECT_NAME} PUBLIC ${OR_TOOLS_COMPILE_OPTIONS})
2020-01-29 17:35:51 +01:00
# Properties
if(NOT APPLE)
set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION})
else()
# Clang don't support version x.y.z with z > 255
2020-03-05 11:01:57 +01:00
set_target_properties(${PROJECT_NAME} PROPERTIES
INSTALL_RPATH "@loader_path"
VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR})
endif()
set_target_properties(${PROJECT_NAME} PROPERTIES
SOVERSION ${PROJECT_VERSION_MAJOR}
POSITION_INDEPENDENT_CODE ON
INTERFACE_POSITION_INDEPENDENT_CODE ON
)
set_target_properties(${PROJECT_NAME} PROPERTIES INTERFACE_${PROJECT_NAME}_MAJOR_VERSION ${PROJECT_VERSION_MAJOR})
set_target_properties(${PROJECT_NAME} PROPERTIES COMPATIBLE_INTERFACE_STRING ${PROJECT_NAME}_MAJOR_VERSION)
2020-01-29 17:35:51 +01:00
# Dependencies
target_link_libraries(${PROJECT_NAME} PUBLIC
2020-06-26 01:01:42 +02:00
${CMAKE_DL_LIBS}
ZLIB::ZLIB
2020-03-02 09:46:15 +01:00
${ABSL_DEPS}
2020-07-01 21:01:16 +02:00
gflags::gflags
glog::glog
dotnet: Remove reference to dotnet release command - Currently not implemented... Add abseil patch - Add patches/absl-config.cmake Makefile: Add abseil-cpp on unix - Force abseil-cpp SHA1 to 45221cc note: Just before the PR #136 which break all CMake Makefile: Add abseil-cpp on windows - Force abseil-cpp SHA1 to 45221cc note: Just before the PR #136 which break all CMake CMake: Add abseil-cpp - Force abseil-cpp SHA1 to 45221cc note: Just before the PR #136 which break all CMake port to absl: C++ Part - Fix warning with the use of ABSL_MUST_USE_RESULT > The macro must appear as the very first part of a function declaration or definition: ... Note: past advice was to place the macro after the argument list. src: dependencies/sources/abseil-cpp-master/absl/base/attributes.h:418 - Rename enum after windows clash - Remove non compact table constraints - Change index type from int64 to int in routing library - Fix file_nonport compilation on windows - Fix another naming conflict with windows (NO_ERROR is a macro) - Cleanup hash containers; work on sat internals - Add optional_boolean sub-proto Sync cpp examples with internal code - reenable issue173 after reducing number of loops port to absl: Python Part - Add back cp_model.INT32_MIN|MAX for examples Update Python examples - Add random_tsp.py - Run words_square example - Run magic_square in python tests port to absl: Java Part - Fix compilation of the new routing parameters in java - Protect some code from SWIG parsing Update Java Examples port to absl: .Net Part Update .Net examples work on sat internals; Add C++ CP-SAT CpModelBuilder API; update sample code and recipes to use the new API; sync with internal code Remove VS 2015 in Appveyor-CI - abseil-cpp does not support VS 2015... improve tables upgrade C++ sat examples to use the new API; work on sat internals update license dates rewrite jobshop_ft06_distance.py to use the CP-SAT solver rename last example revert last commit more work on SAT internals fix
2018-10-31 16:18:18 +01:00
protobuf::libprotobuf
2020-02-06 18:32:40 +01:00
${COINOR_DEPS}
2020-03-02 09:46:15 +01:00
${CPLEX_DEP}
${SCIP_DEP}
${XPRESS_DEP}
Threads::Threads)
if(WIN32)
2020-01-21 16:41:11 +01:00
target_link_libraries(${PROJECT_NAME} PUBLIC psapi.lib ws2_32.lib)
endif()
2020-01-29 17:35:51 +01:00
# ALIAS
add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
2017-06-28 15:45:56 +05:30
# Generate Protobuf cpp sources
set(PROTO_HDRS)
set(PROTO_SRCS)
2020-02-21 19:37:01 +01:00
file(GLOB_RECURSE proto_files RELATIVE ${PROJECT_SOURCE_DIR}
"ortools/bop/*.proto"
"ortools/constraint_solver/*.proto"
"ortools/data/*.proto"
"ortools/glop/*.proto"
"ortools/graph/*.proto"
"ortools/linear_solver/*.proto"
"ortools/sat/*.proto"
"ortools/util/*.proto"
"ortools/linear_solver/*.proto"
)
2018-04-19 16:27:51 +02:00
2020-07-01 21:01:16 +02:00
## Get Protobuf include dir
2018-04-19 16:27:51 +02:00
get_target_property(protobuf_dirs protobuf::libprotobuf INTERFACE_INCLUDE_DIRECTORIES)
2020-03-03 14:52:57 +01:00
foreach(dir IN LISTS protobuf_dirs)
if ("${dir}" MATCHES "BUILD_INTERFACE")
2020-07-01 21:01:16 +02:00
message(STATUS "Adding proto path: ${dir}")
list(APPEND PROTO_DIRS "\"--proto_path=${dir}\"")
2018-04-19 16:27:51 +02:00
endif()
endforeach()
2020-03-03 14:52:57 +01:00
foreach(PROTO_FILE IN LISTS proto_files)
#message(STATUS "protoc proto(cc): ${PROTO_FILE}")
get_filename_component(PROTO_DIR ${PROTO_FILE} DIRECTORY)
get_filename_component(PROTO_NAME ${PROTO_FILE} NAME_WE)
set(PROTO_HDR ${PROJECT_BINARY_DIR}/${PROTO_DIR}/${PROTO_NAME}.pb.h)
set(PROTO_SRC ${PROJECT_BINARY_DIR}/${PROTO_DIR}/${PROTO_NAME}.pb.cc)
#message(STATUS "protoc hdr: ${PROTO_HDR}")
#message(STATUS "protoc src: ${PROTO_SRC}")
add_custom_command(
OUTPUT ${PROTO_SRC} ${PROTO_HDR}
COMMAND protobuf::protoc
"--proto_path=${PROJECT_SOURCE_DIR}"
${PROTO_DIRS}
"--cpp_out=${PROJECT_BINARY_DIR}"
${PROTO_FILE}
DEPENDS ${PROTO_FILE} protobuf::protoc
2020-03-04 17:46:34 +01:00
COMMENT "Generate C++ protocol buffer for ${PROTO_FILE}"
VERBATIM)
list(APPEND PROTO_HDRS ${PROTO_HDR})
list(APPEND PROTO_SRCS ${PROTO_SRC})
endforeach()
#add_library(${PROJECT_NAME}_proto STATIC ${PROTO_SRCS} ${PROTO_HDRS})
add_library(${PROJECT_NAME}_proto OBJECT ${PROTO_SRCS} ${PROTO_HDRS})
set_target_properties(${PROJECT_NAME}_proto PROPERTIES POSITION_INDEPENDENT_CODE ON)
set_target_properties(${PROJECT_NAME}_proto PROPERTIES CXX_STANDARD 11)
set_target_properties(${PROJECT_NAME}_proto PROPERTIES CXX_STANDARD_REQUIRED ON)
set_target_properties(${PROJECT_NAME}_proto PROPERTIES CXX_EXTENSIONS OFF)
target_include_directories(${PROJECT_NAME}_proto PRIVATE
${PROJECT_SOURCE_DIR}
${PROJECT_BINARY_DIR}
$<TARGET_PROPERTY:protobuf::libprotobuf,INTERFACE_INCLUDE_DIRECTORIES>
)
2020-01-29 17:35:51 +01:00
target_compile_definitions(${PROJECT_NAME}_proto PUBLIC ${OR_TOOLS_COMPILE_DEFINITIONS})
target_compile_options(${PROJECT_NAME}_proto PUBLIC ${OR_TOOLS_COMPILE_OPTIONS})
#target_link_libraries(${PROJECT_NAME}_proto PRIVATE protobuf::libprotobuf)
add_dependencies(${PROJECT_NAME}_proto protobuf::libprotobuf)
add_library(${PROJECT_NAME}::proto ALIAS ${PROJECT_NAME}_proto)
# Add ortools::proto to libortools
#target_link_libraries(${PROJECT_NAME} PRIVATE ${PROJECT_NAME}::proto)
target_sources(${PROJECT_NAME} PRIVATE $<TARGET_OBJECTS:${PROJECT_NAME}::proto>)
add_dependencies(${PROJECT_NAME} ${PROJECT_NAME}::proto)
2017-06-28 15:45:56 +05:30
2020-03-02 14:27:13 +01:00
foreach(SUBPROJECT IN ITEMS
algorithms base bop constraint_solver data glop graph linear_solver lp_data
port sat util)
add_subdirectory(ortools/${SUBPROJECT})
#target_link_libraries(${PROJECT_NAME} PRIVATE ${PROJECT_NAME}::${SUBPROJECT})
target_sources(${PROJECT_NAME} PRIVATE $<TARGET_OBJECTS:${PROJECT_NAME}::${SUBPROJECT}>)
add_dependencies(${PROJECT_NAME} ${PROJECT_NAME}::${SUBPROJECT})
endforeach()
2017-06-28 15:45:56 +05:30
if(BUILD_TESTING)
add_subdirectory(examples/cpp)
endif()
# Install rules
include(GNUInstallDirs)
2017-06-28 15:45:56 +05:30
2020-01-30 13:25:40 +01:00
# Install builded dependencies
if(INSTALL_BUILD_DEPS)
if( BUILD_ZLIB OR
BUILD_absl OR
BUILD_gflags OR
BUILD_glog OR
BUILD_Protobuf OR
BUILD_CoinUtils OR
BUILD_Osi OR
BUILD_Clp OR
BUILD_Cgl OR
BUILD_Cbc
)
install(
DIRECTORY ${CMAKE_BINARY_DIR}/dependencies/install/
DESTINATION ${CMAKE_INSTALL_PREFIX}
)
endif()
endif()
include(GenerateExportHeader)
GENERATE_EXPORT_HEADER(${PROJECT_NAME})
install(FILES ${PROJECT_BINARY_DIR}/${PROJECT_NAME}_export.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
install(TARGETS ${PROJECT_NAME}
EXPORT ${PROJECT_NAME}Targets
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install(EXPORT ${PROJECT_NAME}Targets
NAMESPACE ${PROJECT_NAME}::
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME})
install(DIRECTORY ortools
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
COMPONENT Devel
FILES_MATCHING
PATTERN "*.h")
install(DIRECTORY ${PROJECT_BINARY_DIR}/ortools
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
COMPONENT Devel
FILES_MATCHING
PATTERN "*.pb.h"
PATTERN CMakeFiles EXCLUDE)
include(CMakePackageConfigHelpers)
string (TOUPPER "${PROJECT_NAME}" PACKAGE_PREFIX)
configure_package_config_file(cmake/${PROJECT_NAME}Config.cmake.in
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
write_basic_package_version_file(
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake"
COMPATIBILITY SameMajorVersion
)
install(
FILES
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
COMPONENT Devel)