-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
80 lines (66 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cmake_minimum_required(VERSION 3.12)
# set name of the project
project(a2)
set(CMAKE_CXX_STANDARD 17)
enable_testing()
# data folder path
set(CRL_DATA_FOLDER
"\"${CMAKE_CURRENT_LIST_DIR}/data\""
CACHE STRING ""
)
# -----------------------------------------------------------------------------
# options
# -----------------------------------------------------------------------------
option(CMM_BUILD_GUI "build GUI" ON)
# -----------------------------------------------------------------------------
# macro and functions
# -----------------------------------------------------------------------------
# create static library named LIB_NAME
function(
create_crl_library #
LIB_NAME #
SOURCE #
DEPENDENCY #
INCLUDE_DIRS #
LINK_LIBS #
COMPILE_DEFINITIONS #
)
add_library(${LIB_NAME} STATIC ${SOURCE})
add_library(crl::${LIB_NAME} ALIAS ${LIB_NAME})
add_dependencies(${LIB_NAME} ${DEPENDENCY})
target_include_directories(${LIB_NAME} ${INCLUDE_DIRS})
target_link_libraries(${LIB_NAME} ${LINK_LIBS})
if(COMPILE_DEFINITIONS)
# scope is PUBLIC so these definitions are propagated
target_compile_definitions(${LIB_NAME} ${COMPILE_DEFINITIONS})
endif()
# For solution explorer in visual studios
set_property(TARGET ${LIB_NAME} PROPERTY FOLDER "Libs")
endfunction()
# create executable named APP_NAME
function(
create_crl_app #
APP_NAME #
SOURCE #
DEPENDENCY #
INCLUDE_DIRS #
LINK_LIBS #
COMPILE_DEFINITIONS #
)
add_executable(${APP_NAME} ${SOURCE})
add_dependencies(${APP_NAME} ${DEPENDENCY})
target_include_directories(${APP_NAME} ${INCLUDE_DIRS})
target_link_libraries(${APP_NAME} ${LINK_LIBS})
if(COMPILE_DEFINITIONS)
target_compile_definitions(${APP_NAME} ${COMPILE_DEFINITIONS})
endif()
# For solution explorer in visual studios
set_property(TARGET ${APP_NAME} PROPERTY FOLDER "Apps")
endfunction()
# -----------------------------------------------------------------------------
# code
# -----------------------------------------------------------------------------
# thirdparty code
add_subdirectory(ext)
# our code
add_subdirectory(src)