-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
65 lines (57 loc) · 2.33 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
project(GecodeRT)
cmake_minimum_required(VERSION 2.8)
# Add path for some modules
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_SOURCE_DIR}/cmake-support"
)
set(PACKAGE_VERSION "0.1")
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE)
message(FATAL_ERROR "In-source builds are not allowed.")
endif()
##########################################################################
# Compiler information
##########################################################################
if(CMAKE_COMPILER_IS_GNUCC)
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion
OUTPUT_VARIABLE GCC_VERSION)
message(STATUS "GCC version ${GCC_VERSION}")
else()
message(WARNING "Compiler: ${CMAKE_CXX_COMPILER_ID} is unsupported")
endif()
##########################################################################
# System information
##########################################################################
message(STATUS "Building for architecture: ${CMAKE_SYSTEM}")
##########################################################################
# Default compiler flags
##########################################################################
add_definitions("-Wall -Wextra -std=c++0x")
##########################################################################
# Gecode
##########################################################################
find_package(Gecode REQUIRED
COMPONENTS kernel support int set driver flatzinc gist minimodel search)
include_directories(GECODE_INCLUDE_DIR)
##########################################################################
# This project products
##########################################################################
include_directories(${CMAKE_SOURCE_DIR})
set(SOURCES
gecodert/gecodert.cpp
gecodert/int/distinct.cpp
gecodert/int/dom.cpp
gecodert/int/linear.cpp
gecodert/int/rel.cpp
)
add_library(gecodert ${SOURCES})
target_link_libraries(gecodert ${GECODE_LIBRARIES})
##########################################################################
# Examples
##########################################################################
set(EXAMPLES money testInt testBool testSet queens magic-square sudoku)
foreach(example ${EXAMPLES})
add_executable(${example} examples/${example}.cpp)
target_link_libraries(${example} gecodert)
endforeach()