9.2.4 : The CMakeLists.txt file

The CMakeLists.txt file :
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
project(Barycentre)
cmake_minimum_required(VERSION 3.0)

#Only the correction

add_executable(barycentre_base_O0 barycentre.cpp main_barycentre.cpp)
set_property(TARGET barycentre_base_O0 PROPERTY COMPILE_FLAGS "-O0")
target_link_libraries(barycentre_base_O0 asterics_hpc)
runExample(barycentre_base_O0)

add_executable(barycentre_base_O1 barycentre.cpp main_barycentre.cpp)
set_property(TARGET barycentre_base_O1 PROPERTY COMPILE_FLAGS "-O1")
target_link_libraries(barycentre_base_O1 asterics_hpc)
runExample(barycentre_base_O1)

add_executable(barycentre_base_O2 barycentre.cpp main_barycentre.cpp)
set_property(TARGET barycentre_base_O2 PROPERTY COMPILE_FLAGS "-O2")
target_link_libraries(barycentre_base_O2 asterics_hpc)
runExample(barycentre_base_O2)

add_executable(barycentre_base_O3 barycentre.cpp main_barycentre.cpp)
set_property(TARGET barycentre_base_O3 PROPERTY COMPILE_FLAGS "-O3")
target_link_libraries(barycentre_base_O3 asterics_hpc)
runExample(barycentre_base_O3)

add_executable(barycentre_base_Ofast barycentre.cpp main_barycentre.cpp)
set_property(TARGET barycentre_base_Ofast PROPERTY COMPILE_FLAGS "-Ofast")
target_link_libraries(barycentre_base_Ofast asterics_hpc)
runExample(barycentre_base_Ofast)

plotPerf("barycentreBase" barycentre_base_O0 barycentre_base_O1 barycentre_base_O2 barycentre_base_O3 barycentre_base_Ofast)