-
Notifications
You must be signed in to change notification settings - Fork 16
/
CMakeLists.txt
74 lines (51 loc) · 1.88 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
cmake_minimum_required(VERSION 3.9.0)
set(CMAKE_VERBOSE_MAKEFILE ON)
# Set project name and languge.
project(qwfwd C)
######################################################################################################
# Set where sources located.
set(DIR_SRC "src")
# Add sources
set(SRC_COMMON
"${DIR_SRC}/ban.c"
"${DIR_SRC}/ban.c"
"${DIR_SRC}/clc.c"
"${DIR_SRC}/cmd.c"
"${DIR_SRC}/cvar.c"
"${DIR_SRC}/fs.c"
"${DIR_SRC}/huff.c"
"${DIR_SRC}/info.c"
"${DIR_SRC}/main.c"
"${DIR_SRC}/msg.c"
"${DIR_SRC}/net.c"
"${DIR_SRC}/peer.c"
"${DIR_SRC}/query.c"
"${DIR_SRC}/svc.c"
"${DIR_SRC}/sys.c"
"${DIR_SRC}/token.c"
)
######################################################################################################
# Set base compiler flags
set(CFLAGS -Wall)
set(LFLAGS)
######################################################################################################
# Set target
add_executable(${PROJECT_NAME} ${SRC_COMMON})
set_target_properties(${PROJECT_NAME}
PROPERTIES #PREFIX "" # Strip lib prefix.
C_VISIBILITY_PRESET hidden # Hide all symbols unless excplicitly marked to export.
)
######################################################################################################
# Set include directories
target_include_directories(${PROJECT_NAME} PRIVATE)
######################################################################################################
# Check build target, and included sources and libs
if(UNIX)
else()
target_link_libraries(${PROJECT_NAME} ws2_32)
set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc")
endif()
######################################################################################################
# Assign compiler flags
target_compile_options(${PROJECT_NAME} PRIVATE ${CFLAGS})
######################################################################################################