2018-01-15 00:43:57 +01:00
|
|
|
#
|
2016-08-08 09:27:59 +02:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2023-12-08 08:58:52 +01:00
|
|
|
cmake_minimum_required(VERSION 3.9)
|
2016-08-08 09:27:59 +02:00
|
|
|
project (SVDLL)
|
|
|
|
|
|
|
|
set (SVDLL_LIBRARY server)
|
|
|
|
|
2017-12-28 00:05:47 +01:00
|
|
|
if(NOT MSVC)
|
2018-01-15 00:43:57 +01:00
|
|
|
add_compile_options(-fno-exceptions) # GCC/Clang flag
|
2024-01-15 03:40:06 +01:00
|
|
|
add_compile_options(-fno-rtti) # GCC/Clang flag
|
2018-01-15 00:43:57 +01:00
|
|
|
add_compile_options(-Wno-invalid-offsetof) # GCC/Clang flag
|
2018-08-07 09:24:04 +02:00
|
|
|
add_compile_options(-fvisibility=hidden) # GCC/Clang flag
|
2017-12-28 00:02:23 +01:00
|
|
|
add_definitions(-D_LINUX) # It seems enough for all non-Win32 systems
|
|
|
|
add_definitions(-Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -D_snprintf=snprintf -D_vsnprintf=vsnprintf )
|
2024-01-15 04:55:36 +01:00
|
|
|
if(CMAKE_BUILD_TYPE MATCHES "Release"
|
|
|
|
OR (CMAKE_BUILD_TYPE MATCHES "RelWithDebInfo"
|
|
|
|
AND CMAKE_SYSTEM_NAME STREQUAL "Android"))
|
|
|
|
add_compile_options(-fno-unwind-tables -fno-asynchronous-unwind-tables) # GCC/Clang flag
|
|
|
|
add_compile_options(-fomit-frame-pointer) # GCC/Clang flag
|
|
|
|
add_compile_options(-ftree-vectorize) # GCC/Clang flag
|
|
|
|
add_compile_options(-funsafe-math-optimizations) # GCC/Clang flag
|
|
|
|
endif()
|
2017-12-28 00:02:23 +01:00
|
|
|
else()
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE)
|
|
|
|
endif()
|
2016-08-08 09:27:59 +02:00
|
|
|
|
2018-08-07 09:24:04 +02:00
|
|
|
set (SVDLL_SOURCES
|
2016-08-08 09:27:59 +02:00
|
|
|
agrunt.cpp
|
|
|
|
airtank.cpp
|
|
|
|
aflock.cpp
|
|
|
|
animating.cpp
|
|
|
|
animation.cpp
|
|
|
|
apache.cpp
|
|
|
|
barnacle.cpp
|
|
|
|
barney.cpp
|
|
|
|
bigmomma.cpp
|
|
|
|
bloater.cpp
|
|
|
|
bmodels.cpp
|
|
|
|
bullsquid.cpp
|
|
|
|
buttons.cpp
|
|
|
|
cbase.cpp
|
|
|
|
client.cpp
|
|
|
|
combat.cpp
|
|
|
|
controller.cpp
|
|
|
|
crossbow.cpp
|
|
|
|
crowbar.cpp
|
|
|
|
defaultai.cpp
|
|
|
|
doors.cpp
|
|
|
|
effects.cpp
|
|
|
|
egon.cpp
|
|
|
|
explode.cpp
|
|
|
|
flyingmonster.cpp
|
|
|
|
func_break.cpp
|
|
|
|
func_tank.cpp
|
|
|
|
game.cpp
|
|
|
|
gamerules.cpp
|
|
|
|
gargantua.cpp
|
|
|
|
gauss.cpp
|
|
|
|
genericmonster.cpp
|
|
|
|
ggrenade.cpp
|
|
|
|
globals.cpp
|
|
|
|
glock.cpp
|
|
|
|
gman.cpp
|
|
|
|
h_ai.cpp
|
|
|
|
h_battery.cpp
|
|
|
|
h_cine.cpp
|
|
|
|
h_cycler.cpp
|
|
|
|
h_export.cpp
|
|
|
|
handgrenade.cpp
|
|
|
|
hassassin.cpp
|
|
|
|
headcrab.cpp
|
|
|
|
healthkit.cpp
|
|
|
|
hgrunt.cpp
|
|
|
|
hornet.cpp
|
|
|
|
hornetgun.cpp
|
|
|
|
houndeye.cpp
|
|
|
|
ichthyosaur.cpp
|
|
|
|
islave.cpp
|
|
|
|
items.cpp
|
|
|
|
leech.cpp
|
|
|
|
lights.cpp
|
|
|
|
maprules.cpp
|
|
|
|
monstermaker.cpp
|
|
|
|
monsters.cpp
|
|
|
|
monsterstate.cpp
|
|
|
|
mortar.cpp
|
|
|
|
mp5.cpp
|
|
|
|
multiplay_gamerules.cpp
|
|
|
|
nihilanth.cpp
|
|
|
|
nodes.cpp
|
2017-06-26 04:06:27 +02:00
|
|
|
observer.cpp
|
2016-08-08 09:27:59 +02:00
|
|
|
osprey.cpp
|
|
|
|
pathcorner.cpp
|
|
|
|
plane.cpp
|
|
|
|
plats.cpp
|
|
|
|
player.cpp
|
2017-11-18 10:49:01 +01:00
|
|
|
playermonster.cpp
|
2016-08-08 09:27:59 +02:00
|
|
|
python.cpp
|
|
|
|
rat.cpp
|
|
|
|
roach.cpp
|
|
|
|
rpg.cpp
|
|
|
|
satchel.cpp
|
|
|
|
schedule.cpp
|
|
|
|
scientist.cpp
|
|
|
|
scripted.cpp
|
|
|
|
shotgun.cpp
|
|
|
|
singleplay_gamerules.cpp
|
|
|
|
skill.cpp
|
|
|
|
sound.cpp
|
|
|
|
soundent.cpp
|
|
|
|
spectator.cpp
|
|
|
|
squadmonster.cpp
|
|
|
|
squeakgrenade.cpp
|
|
|
|
subs.cpp
|
|
|
|
talkmonster.cpp
|
|
|
|
teamplay_gamerules.cpp
|
|
|
|
tempmonster.cpp
|
|
|
|
tentacle.cpp
|
|
|
|
triggers.cpp
|
|
|
|
tripmine.cpp
|
|
|
|
turret.cpp
|
|
|
|
util.cpp
|
2024-01-28 10:14:47 +01:00
|
|
|
vehicle.cpp
|
2016-08-08 09:27:59 +02:00
|
|
|
weapons.cpp
|
|
|
|
world.cpp
|
|
|
|
xen.cpp
|
|
|
|
zombie.cpp
|
|
|
|
../pm_shared/pm_debug.c
|
|
|
|
../pm_shared/pm_math.c
|
|
|
|
../pm_shared/pm_shared.c
|
2024-04-05 18:47:53 +02:00
|
|
|
../game_shared/vcs_info.cpp
|
2016-08-08 09:27:59 +02:00
|
|
|
)
|
2018-08-07 09:24:04 +02:00
|
|
|
|
2016-08-08 09:27:59 +02:00
|
|
|
include_directories (. wpn_shared ../common ../engine ../pm_shared ../game_shared ../public)
|
|
|
|
|
2021-06-17 20:33:55 +02:00
|
|
|
if(MSVC)
|
|
|
|
set(SVDLL_SOURCES
|
|
|
|
${SVDLL_SOURCES}
|
|
|
|
hl.def)
|
|
|
|
endif()
|
|
|
|
|
2016-08-08 09:27:59 +02:00
|
|
|
if(USE_VOICEMGR)
|
|
|
|
set(SVDLL_SOURCES
|
|
|
|
${SVDLL_SOURCES}
|
|
|
|
../game_shared/voice_gamemgr.cpp)
|
|
|
|
else()
|
|
|
|
add_definitions(-DNO_VOICEGAMEMGR)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library (${SVDLL_LIBRARY} SHARED ${SVDLL_SOURCES})
|
|
|
|
|
2017-12-18 22:27:56 +01:00
|
|
|
set_target_properties (${SVDLL_LIBRARY} PROPERTIES
|
2016-08-08 09:27:59 +02:00
|
|
|
POSITION_INDEPENDENT_CODE 1)
|
|
|
|
|
2023-12-21 17:47:02 +01:00
|
|
|
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Android")
|
2018-03-22 13:23:34 +01:00
|
|
|
set(SVDLL_NAME "${SERVER_LIBRARY_NAME}")
|
|
|
|
|
2017-12-18 22:27:56 +01:00
|
|
|
set_target_properties(${SVDLL_LIBRARY} PROPERTIES
|
2018-03-22 13:23:34 +01:00
|
|
|
OUTPUT_NAME ${SVDLL_NAME}
|
2017-12-18 22:27:56 +01:00
|
|
|
PREFIX "")
|
|
|
|
endif()
|
|
|
|
|
2021-08-27 10:04:15 +02:00
|
|
|
if(MSVC)
|
|
|
|
set_property(TARGET ${SVDLL_LIBRARY} PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
|
|
|
endif()
|
|
|
|
|
2024-01-15 03:16:49 +01:00
|
|
|
if(HAVE_LTO)
|
|
|
|
set_property(TARGET ${SVDLL_LIBRARY} PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
endif()
|
|
|
|
|
2017-12-18 22:27:56 +01:00
|
|
|
install( TARGETS ${SVDLL_LIBRARY}
|
|
|
|
DESTINATION "${GAMEDIR}/${SERVER_INSTALL_DIR}/"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
|
|
|
|
GROUP_READ GROUP_EXECUTE
|
|
|
|
WORLD_READ WORLD_EXECUTE)
|
2024-01-15 06:00:46 +01:00
|
|
|
|
|
|
|
add_custom_command(TARGET ${SVDLL_LIBRARY}
|
|
|
|
POST_BUILD DEPENDS ${SVDLL_LIBRARY}
|
|
|
|
COMMAND $<$<CONFIG:release>:${CMAKE_STRIP}> -s $<TARGET_FILE:${SVDLL_LIBRARY}>)
|