-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
60 lines (43 loc) · 1.94 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
# Hypergraph Case-Base Reasoner
######################################################################################
### 0) Check the CMake version
######################################################################################
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
######################################################################################
### 1) Define the project
######################################################################################
## Name
project("H-CBR")
## 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/io.cpp
#src/utils.cpp
)
#add_executable(hcbr src/sequence.cpp ${FILES})
add_executable(hcbr_learning src/learning_sequence.cpp ${FILES})
target_link_libraries(hcbr_learning -lstdc++fs)
add_executable(ensemble src/ensemble.cpp ${FILES})
target_link_libraries(ensemble -lstdc++fs)
######################################################################################
### 3) Include Tests
######################################################################################
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Tests.cmake)