-
Notifications
You must be signed in to change notification settings - Fork 42
/
CMakeLists.txt
49 lines (37 loc) · 1.08 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
if(DEFINED CIPHER_LIBRARY)
return()
else()
set(CIPHER_LIBRARY 1)
endif()
project(cipher)
if(TARGET ${PROJECT_NAME})
message("The ${PROJECT_NAME} arledy included in main Project")
return()
endif()
cmake_minimum_required(VERSION 3.1)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
option(BUILD_SHARED_LIBS "Enable or disable shared libraries" OFF)
option(CIPHER_TESTS "Enable tests of the ${PROJECT_NAME} library" OFF)
file(GLOB SOURCE_CPP
"base/*.h"
"base/*.cpp"
"cipher/*.h"
"cipher/*.cpp"
"cipher/*.c"
)
add_library(${PROJECT_NAME} ${SOURCE_CPP})
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_LIST_DIR})
if (CIPHER_TESTS)
file(GLOB SOURCE_CPP_TEST
"cipher/unittest/*.h"
"cipher/unittest/*.cpp"
"cipher/unittest/*.c"
"cipher/unittest/ut/*.h"
"cipher/unittest/ut/*.cpp"
"cipher/unittest/ut/*.c"
)
add_executable(${PROJECT_NAME}_test ${SOURCE_CPP_TEST})
target_link_libraries(${PROJECT_NAME}_test PUBLIC ${PROJECT_NAME})
endif()