-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCMakeLists.txt
79 lines (55 loc) · 1.96 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
cmake_minimum_required(VERSION 3.9.0)
set(CMAKE_VERBOSE_MAKEFILE ON)
# Set project name and languge.
project(mvdparser C)
######################################################################################################
# Set where sources located.
set(DIR_SRC "src")
# Add sources
set(SRC_COMMON
"${DIR_SRC}/frag_parser.c"
"${DIR_SRC}/logger.c"
"${DIR_SRC}/main.c"
"${DIR_SRC}/mvd_parser.c"
"${DIR_SRC}/net_msg.c"
"${DIR_SRC}/netmsg_parser.c"
"${DIR_SRC}/qw_protocol.c"
"${DIR_SRC}/shared.c"
"${DIR_SRC}/strptime.c"
)
# Check build target, and included sources
if(UNIX)
list(APPEND SRC_COMMON
"${DIR_SRC}/sys_linux.c"
)
else()
list(APPEND SRC_COMMON
"${DIR_SRC}/sys_win.c"
)
endif()
######################################################################################################
# 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)
target_link_libraries(${PROJECT_NAME} m)
else()
target_link_libraries(${PROJECT_NAME} winmm)
set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc")
endif()
######################################################################################################
# Assign compiler flags
target_compile_options(${PROJECT_NAME} PRIVATE ${CFLAGS})
######################################################################################################