-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
63 lines (46 loc) · 2.01 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
# ZenoSolver
######################################################################################
### 0) Check the CMake version
######################################################################################
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
######################################################################################
### 1) Define the project
######################################################################################
## Name
project("ZenoSolver")
## Language
enable_language(CXX)
######################################################################################
### 2) Include CMake files
######################################################################################
## Configuration file
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
## Build type and flags
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/BuildType.cmake)
## Dependencies
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Dependencies.cmake)
## Custom Targets file
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Target.cmake)
add_subdirectory(doc)
######################################################################################
### 3) Define and add module paths
######################################################################################
## Paths
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
set(FILES
src/algorithm.cpp
src/genFunctions.cpp
src/combiGenerator.cpp
src/utils.cpp
src/powerSetGenerator.cpp
src/paretoExtraction.cpp
)
add_executable(zenoSolver src/solver.cpp ${FILES})
add_executable(zenoSolver_noDuplicate src/solver_noDuplicate.cpp ${FILES})
add_executable(zenoSolver_naive src/solver_naive.cpp ${FILES})
#add_executable(random src/random.cpp)
######################################################################################
### 3) Include Tests
######################################################################################
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Tests.cmake)