-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakeLists.txt
67 lines (48 loc) · 1.8 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
cmake_minimum_required(VERSION 3.1)
set(project_name example-libressl) ## rename your project here
project(${project_name})
set(CMAKE_CXX_STANDARD 11)
add_library(${project_name}-lib
src/AppComponent.hpp
src/client/MyApiClient.hpp
src/controller/MyController.cpp
src/controller/MyController.hpp
src/dto/MyDTOs.hpp
)
target_include_directories(${project_name}-lib PUBLIC src)
## link libs
find_package(oatpp 1.3.0 REQUIRED)
find_package(oatpp-libressl 1.3.0 REQUIRED)
include(FindPkgConfig) # <-- include pkg-config needed by FindLibreSSL.cmake script
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") # <-- use FindLibreSSL.cmake in /cmake folder
find_package(LibreSSL 3.0.0 REQUIRED)
target_link_libraries(${project_name}-lib
# Oat++ libraries
PUBLIC oatpp::oatpp
PUBLIC oatpp::oatpp-test
PUBLIC oatpp::oatpp-libressl # <-- oatpp-libressl adapter
# LibreSSL libraries
PUBLIC LibreSSL::TLS
PUBLIC LibreSSL::SSL
PUBLIC LibreSSL::Crypto
)
#################################################################
## define certificates path
add_definitions(
-DCERT_PEM_PATH="${CMAKE_CURRENT_LIST_DIR}/cert/test_key.pem"
-DCERT_CRT_PATH="${CMAKE_CURRENT_LIST_DIR}/cert/test_cert.crt"
)
#################################################################
## add executables
add_executable(${project_name}-exe
src/App.cpp
)
target_link_libraries(${project_name}-exe ${project_name}-lib)
add_dependencies(${project_name}-exe ${project_name}-lib)
add_executable(${project_name}-test
test/tests.cpp
)
target_link_libraries(${project_name}-test ${project_name}-lib)
add_dependencies(${project_name}-test ${project_name}-lib)
enable_testing()
add_test(project-tests ${project_name}-test)