-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
84 lines (61 loc) · 2.1 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
81
82
83
84
cmake_minimum_required(VERSION 3.1)
set(project_name example-mongodb)
project(${project_name})
set(CMAKE_CXX_STANDARD 11)
add_library(${project_name}-lib
src/db/Database.cpp
src/db/Database.hpp
src/AppComponent.hpp
src/SwaggerComponent.hpp
src/controller/UserController.hpp
src/dto/DTOs.hpp
src/db/Model.hpp)
###################################################################
# Find mongocxx
find_package(mongocxx REQUIRED)
message("LIBBSONCXX_INCLUDE_DIRS=${LIBBSONCXX_INCLUDE_DIRS}")
message("LIBBSONCXX_LIBRARIES=${LIBBSONCXX_LIBRARIES}")
message("LIBMONGOCXX_INCLUDE_DIRS=${LIBMONGOCXX_INCLUDE_DIRS}")
message("LIBMONGOCXX_LIBRARIES=${LIBMONGOCXX_LIBRARIES}")
###################################################################
find_package(oatpp 1.3.0 REQUIRED)
find_package(oatpp-swagger 1.3.0 REQUIRED)
find_package(oatpp-mongo 1.3.0 REQUIRED)
## include directories
target_include_directories(${project_name}-lib
PUBLIC src
)
## link libs
target_link_libraries(${project_name}-lib
PUBLIC oatpp::oatpp
PUBLIC oatpp::oatpp-swagger
PUBLIC oatpp::oatpp-mongo
)
if (TARGET mongo::mongocxx_shared)
target_link_libraries(${project_name}-lib
PUBLIC mongo::mongocxx_shared
)
message("mongo::mongocxx_shared is used")
elseif(TARGET mongo::mongocxx_static)
target_link_libraries(${project_name}-lib
PUBLIC mongo::mongocxx_static
)
endif()
## define path to swagger-ui res folder
add_definitions(
-DOATPP_SWAGGER_RES_PATH="${oatpp-swagger_INCLUDE_DIRS}/../bin/oatpp-swagger/res"
)
#################################################################
## add executables
add_executable(${project_name}
src/App.cpp
)
target_link_libraries(${project_name} ${project_name}-lib)
add_dependencies(${project_name} ${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)