forked from nfabubaker/SpComm3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
46 lines (33 loc) · 2.05 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
cmake_minimum_required(VERSION 3.1)
###############################################################################
## CXX Setup ##################################################################
###############################################################################
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_COMPILER mpic++) # default, change in subdir if necessary
# to change build type (for checking optimization flags), do:
# cmake -DCMAKE_BUILD_TYPE=Release (acc. to stackoverflow)
# set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wpedantic")
set(CMAKE_CXX_FLAGS_DEBUG "-g")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -march=native")
set(CMAKE_EXPORT_COMPILE_COMMANDS on)
###############################################################################
## project setup ##############################################################
###############################################################################
project(SpCOMM3D)
###############################################################################
## file globbing ##############################################################
###############################################################################
file(GLOB_RECURSE GLOB_SOURCES src/*.cpp)
include_directories(src) # outdated method but not a big deal I think (Manuel)
###############################################################################
## target definitions #########################################################
###############################################################################
add_subdirectory(miniapp)
###############################################################################
## dependencies ###############################################################
###############################################################################
add_subdirectory(thirdparty)
###############################################################################
## testing ####################################################################
###############################################################################
add_subdirectory(testing)