blob: 4eb75c106625ee211b5e299dfa6f3954e61a13e3 (
plain)
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
|
cmake_minimum_required(VERSION "4.2.0")
project("ttwhy"
VERSION "1.0.0"
LANGUAGES CXX
)
### Fetch Dependencies
include("FetchContent")
FetchContent_Declare("asio"
GIT_REPOSITORY "https://github.com/chriskohlhoff/asio"
GIT_TAG "asio-1-38-0"
)
FetchContent_MakeAvailable("asio")
### asio
find_package("Threads")
add_library("asio" INTERFACE)
add_library("ext::asio" ALIAS "asio")
target_include_directories("asio" INTERFACE
"${asio_SOURCE_DIR}/asio/include"
)
target_link_libraries("asio" INTERFACE
"Threads::Threads"
)
### Core Library
add_library("ttwhy-core")
add_library("ttwhy::lib" ALIAS "ttwhy-core")
target_sources("ttwhy-core" PUBLIC
FILE_SET CXX_MODULES
FILES
"ttwhy/lib.cppm"
)
target_include_directories("ttwhy-core" PUBLIC
"${CMAKE_SOURCE_DIR}"
)
target_compile_features("ttwhy-core" PUBLIC
"cxx_std_23"
)
target_link_libraries("ttwhy-core" PUBLIC
"ext::asio"
)
### Main Executable
add_executable("ttwhy")
add_executable("ttwhy::app" ALIAS "ttwhy")
target_sources("ttwhy" PRIVATE
"ttwhy/main.cpp"
)
target_link_libraries("ttwhy" PRIVATE
"ttwhy::lib"
)
|