-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
56 lines (44 loc) · 1.23 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
cmake_minimum_required(VERSION 3.6)
project(Samaritan)
set(CMAKE_CXX_STANDARD 11)
set(SOURCE_FILES
header/dominance.h
header/global.h
header/memory.h
header/indicators.h
header/metaheuristics.h
header/population.h
header/print.h
header/problems.h
header/rand.h
header/reproduction.h
header/selection.h
header/utility.h
header/analyse.h
core/dominance.c
core/initialization.c
core/list.c
core/memory.c
core/population.c
core/print.c
core/rand.c
core/utility.c
metaheuristics/nsga2.c
selection/nsga2/crowddist.c
selection/nsga2/fillnds.c
selection/nsga2/qsort.c
reproduction/crossover/crossover_nsga2.c
reproduction/crossover/sbx.c
reproduction/mating/tournament_selection.c
reproduction/mutation/mutation_real.c
reproduction/mutation/polymut.c
analyse/analyse.c
indicators/igd.c
testproblem/DTLZ/DTLZ1.c
testproblem/ZDT/ZDT1.c
testproblem/evaluation.c
config.txt
main.c
)
add_executable(Samaritan ${SOURCE_FILES})
target_link_libraries(Samaritan m)