-
Notifications
You must be signed in to change notification settings - Fork 39
/
CMakeLists.txt
115 lines (96 loc) · 3.71 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#
# Copyright (c) 2015 Pavlo Lavrenenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
cmake_minimum_required(VERSION 2.8.12)
project(MAINUI)
# By default we require C++11 support.
# But it can be overriden with -DMY_COMPILER_SUCKS compiler option
# It's not recommended and may not work(as it's done only for MSVC6 support)
set(CMAKE_CXX_STANDARD 11)
set(MAINUI_LIBRARY menu)
option(MAINUI_USE_CUSTOM_FONT_RENDER "Use custom font rendering" ON)
option(MAINUI_USE_STB "Use stb_truetype.h for rendering(*nix-only)" OFF)
option(MAINUI_FONT_SCALE "Scale fonts by height" OFF)
if(NOT XASH_SDK)
set(XASH_SDK "sdk_includes/")
endif()
file(GLOB MAINUI_CONTROLS_SOURCES "controls/*.cpp")
file(GLOB MAINUI_MENUS_SOURCES "menus/*.cpp" "menus/dynamic/*.cpp")
file(GLOB MAINUI_FONT_RENDER_SOURCES "font/*.cpp")
file(GLOB MAINUI_SOURCES "miniutl/*.cpp" "*.cpp")
if(CS16CLIENT)
add_definitions(-DCS16CLIENT)
list(APPEND MAINUI_SOURCES
${XASH_SDK}/common/interface.cpp
menus/Scoreboard.cpp
menus/client/JoinGame.cpp
menus/client/JoinClass.cpp
menus/client/ClientWindow.cpp
)
endif()
list(APPEND MAINUI_SOURCES ${MAINUI_CONTROLS_SOURCES})
list(APPEND MAINUI_SOURCES ${MAINUI_MENUS_SOURCES})
list(APPEND MAINUI_SOURCES ${MAINUI_FONT_RENDER_SOURCES})
add_library(${MAINUI_LIBRARY} MODULE ${MAINUI_SOURCES})
if(NOT WIN32 AND NOT MINGW)
add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-variable)
else()
# Only for MSVC6 compatibility mode! Newer VC does fail with this define
# add_definitions(-DMY_COMPILER_SUCKS)
endif()
if(XASH_SAILFISH)
add_definitions(-D__SAILFISH__)
endif()
if(MAINUI_FONT_SCALE)
add_definitions(-DMAINUI_FONT_SCALE)
endif()
add_definitions(-DSTDINT_H=<cstdint>)
# Force stb_truetype for Apple devices, as there is no Apple native font renderer
# And freetype&fontconfig isn't used on this platform by default
if(ANDROID)
set(MAINUI_USE_STB TRUE)
endif()
include_directories(${XASH_SDK}/common ${XASH_SDK}/engine ${XASH_SDK}/pm_shared ${XASH_SDK}/public . controls/ menus/ miniutl/ font/ model/)
if(MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
# Font Rendering(FreeType or WinAPI)
if(MAINUI_USE_CUSTOM_FONT_RENDER)
# Win32 will always use GDI font renderer
if(NOT WIN32)
if(MAINUI_USE_STB)
# Use stbtt
add_definitions(-DMAINUI_USE_STB)
else()
# Use freetype2
find_package(PkgConfig)
pkg_check_modules(FC REQUIRED fontconfig)
include_directories(${FC_INCLUDE_DIRS})
target_link_libraries(${MAINUI_LIBRARY} ${FC_LIBRARIES})
add_definitions(-DMAINUI_USE_FREETYPE)
endif()
endif()
add_definitions(-DMAINUI_USE_CUSTOM_FONT_RENDER)
endif()
install(TARGETS ${MAINUI_LIBRARY} DESTINATION .)
if(MSVC)
install(FILES $<TARGET_PDB_FILE:${MAINUI_LIBRARY}> DESTINATION . OPTIONAL)
endif()