16 lines
415 B
CMake
16 lines
415 B
CMake
## ortools CMake configuration file
|
|
|
|
set(@PACKAGE_PREFIX@_VERSION @PROJECT_VERSION@)
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
include (CMakeFindDependencyMacro)
|
|
|
|
find_dependency(ZLIB REQUIRED NO_MODULE)
|
|
find_dependency(gflags REQUIRED NO_MODULE)
|
|
find_dependency(glog REQUIRED NO_MODULE)
|
|
find_dependency(Protobuf REQUIRED NO_MODULE)
|
|
find_dependency(Cbc REQUIRED NO_MODULE)
|
|
|
|
include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|