-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
68 lines (48 loc) · 1.63 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
cmake_minimum_required(VERSION 3.14)
include(cmake/prelude.cmake)
project(
torrenter
VERSION 1.0.0
DESCRIPTION "Short description"
HOMEPAGE_URL ""
LANGUAGES CXX
)
include(cmake/project-is-top-level.cmake)
include(cmake/variables.cmake)
# ---- Declare library ----
add_library(
torrenter_lib OBJECT
"source/app.cpp" "source/bitTorrent/protocol.cpp" "source/bitTorrent/protocol.hpp" "source/bitTorrent/bencode.cpp"
"source/bitTorrent/protocol.cpp" "source/bitTorrent/protocol.hpp" "source/bitTorrent/bencode.cpp")
target_include_directories(
torrenter_lib ${warning_guard}
PUBLIC
"\$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/source>"
)
target_compile_features(torrenter_lib PUBLIC cxx_std_20)
find_package(fmt REQUIRED)
target_link_libraries(torrenter_lib PRIVATE fmt::fmt)
find_package(OpenSSL REQUIRED)
target_link_libraries(torrenter_lib PRIVATE openssl::openssl)
find_package(Boost REQUIRED)
target_link_libraries(torrenter_lib PRIVATE boost::boost)
# ---- Declare executable ----
add_executable(torrenter_exe source/main.cpp)
add_executable(torrenter::exe ALIAS torrenter_exe)
set_property(TARGET torrenter_exe PROPERTY OUTPUT_NAME torrenter)
target_compile_features(torrenter_exe PRIVATE cxx_std_20)
target_link_libraries(torrenter_exe PRIVATE torrenter_lib)
# ---- Install rules ----
if(NOT CMAKE_SKIP_INSTALL_RULES)
include(cmake/install-rules.cmake)
endif()
# ---- Developer mode ----
if(NOT torrenter_DEVELOPER_MODE)
return()
elseif(NOT PROJECT_IS_TOP_LEVEL)
message(
AUTHOR_WARNING
"Developer mode is intended for developers of torrenter"
)
endif()
include(cmake/dev-mode.cmake)