2023-01-29 21:00:43 +01:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(omohaaded)
|
|
|
|
|
2023-02-01 00:29:02 +01:00
|
|
|
include(TargetArch.cmake)
|
|
|
|
|
|
|
|
target_architecture(TARGET_ARCH)
|
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
if(TARGET_GAME_TYPE)
|
|
|
|
if(TARGET_GAME_TYPE EQUAL 1)
|
|
|
|
# Build for Team Assault (Spearhead)
|
|
|
|
set(TARGET_BASE_SUFFIX "ta")
|
|
|
|
elseif(TARGET_GAME_TYPE EQUAL 2)
|
|
|
|
# Build for Team Tactics (Breakthrough)
|
|
|
|
set(TARGET_BASE_SUFFIX "tt")
|
|
|
|
else()
|
|
|
|
set(TARGET_BASE_SUFFIX)
|
|
|
|
message(SEND_ERROR "Invalid game type. Game type can be 0, 1 or 2")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(TARGET_BASE_SUFFIX)
|
|
|
|
set(TARGET_GAME_TYPE 0)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(TARGET_BASE_GAME "main${TARGET_BASE_SUFFIX}")
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
add_compile_definitions(_CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_DEPRECATE)
|
2023-02-01 00:29:02 +01:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
add_compile_options(-Wno-comment)
|
|
|
|
# Ignore warnings for code like 'assert("Assert string")'
|
|
|
|
add_compile_options(-Wno-pointer-bool-conversion)
|
2023-01-30 18:39:52 +01:00
|
|
|
endif()
|
|
|
|
|
2023-02-01 22:45:04 +01:00
|
|
|
IF("${TARGET_ARCH}" STREQUAL "x86_64")
|
2023-02-03 21:26:12 +01:00
|
|
|
set(TARGET_ARCH_SUFFIX "x86_64")
|
2023-02-01 22:45:04 +01:00
|
|
|
ELSEIF("${TARGET_ARCH}" STREQUAL "i386")
|
|
|
|
set(TARGET_ARCH_SUFFIX "x86")
|
2023-02-04 00:48:37 +02:00
|
|
|
ELSEIF("${TARGET_ARCH}" STREQUAL "arm64")
|
|
|
|
set(TARGET_ARCH_SUFFIX "arm64")
|
2023-02-01 22:45:04 +01:00
|
|
|
ELSEIF("${TARGET_ARCH}" MATCHES "arm(.*)")
|
|
|
|
set(TARGET_ARCH_SUFFIX "arm")
|
|
|
|
ELSE()
|
|
|
|
set(TARGET_ARCH_SUFFIX ${TARGET_ARCH})
|
|
|
|
ENDIF()
|
2023-01-29 21:00:43 +01:00
|
|
|
|
2023-02-01 22:45:04 +01:00
|
|
|
message(STATUS "Architecture detected: ${TARGET_ARCH}, suffix set to ${TARGET_ARCH_SUFFIX}")
|
2023-02-01 00:29:02 +01:00
|
|
|
|
|
|
|
IF(WIN32)
|
|
|
|
set(TARGET_PLATFORM_PREFIX "")
|
|
|
|
message(STATUS "Using Win32 naming convention")
|
|
|
|
ELSEIF(UNIX)
|
2023-02-01 22:45:04 +01:00
|
|
|
set(TARGET_PLATFORM_PREFIX "")
|
2023-02-01 00:29:02 +01:00
|
|
|
message(STATUS "Using Unix naming convention")
|
|
|
|
ELSE()
|
|
|
|
set(TARGET_PLATFORM_PREFIX "")
|
|
|
|
ENDIF()
|
|
|
|
|
2023-01-29 21:00:43 +01:00
|
|
|
set(SOURCES_SHARED
|
|
|
|
"code/qcommon/class.cpp"
|
|
|
|
"code/qcommon/con_set.cpp"
|
|
|
|
"code/qcommon/con_timer.cpp"
|
|
|
|
"code/qcommon/listener.cpp"
|
|
|
|
"code/qcommon/lz77.cpp"
|
|
|
|
"code/qcommon/mem_blockalloc.cpp"
|
|
|
|
"code/qcommon/mem_tempalloc.cpp"
|
|
|
|
"code/qcommon/q_math.c"
|
|
|
|
"code/qcommon/q_shared.c"
|
|
|
|
"code/qcommon/script.cpp"
|
|
|
|
"code/qcommon/str.cpp"
|
|
|
|
"code/script/scriptexception.cpp"
|
|
|
|
"code/script/scriptvariable.cpp"
|
|
|
|
)
|
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
# Shared libraries
|
|
|
|
|
|
|
|
## Server game library
|
|
|
|
file(GLOB_RECURSE SOURCES_GAME "code/game/*.c" "code/game/*.cpp" "code/parser/*.cpp" "code/script/*.cpp")
|
|
|
|
set(SOURCES_GAME_LIB ${SOURCES_SHARED} ${SOURCES_GAME})
|
|
|
|
|
|
|
|
add_library(fgame SHARED ${SOURCES_GAME_LIB})
|
|
|
|
target_compile_definitions(fgame PRIVATE GAME_DLL ARCHIVE_SUPPORTED TARGET_GAME_TYPE=${TARGET_GAME_TYPE})
|
2023-02-03 20:26:27 +01:00
|
|
|
target_include_directories(fgame PUBLIC "code/qcommon" "code/script" "code/game")
|
|
|
|
target_include_directories(fgame PRIVATE "code/parser")
|
2023-02-01 00:29:02 +01:00
|
|
|
target_compile_features(fgame PUBLIC cxx_std_17)
|
2023-01-30 18:39:52 +01:00
|
|
|
|
2023-02-01 00:29:02 +01:00
|
|
|
set_target_properties(fgame PROPERTIES PREFIX "${TARGET_PLATFORM_PREFIX}")
|
2023-01-30 18:39:52 +01:00
|
|
|
set_target_properties(fgame PROPERTIES OUTPUT_NAME "game${TARGET_ARCH_SUFFIX}")
|
2023-02-01 19:29:46 +01:00
|
|
|
set_target_properties(fgame PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${TARGET_BASE_GAME}")
|
2023-02-01 22:45:04 +01:00
|
|
|
INSTALL(TARGETS fgame DESTINATION "${TARGET_BASE_GAME}")
|
2023-01-30 18:39:52 +01:00
|
|
|
|
|
|
|
## Client game library
|
|
|
|
## TODO! Build the cgame shared library
|
|
|
|
|
|
|
|
# Applications
|
|
|
|
|
|
|
|
## Code for all executables
|
|
|
|
|
|
|
|
### Platform-specific code
|
|
|
|
if(WIN32)
|
|
|
|
set(SOURCES_PLATFORM_SPECIFIC
|
|
|
|
"code/sys/con_win32.c"
|
|
|
|
"code/sys/sys_win32.c"
|
2023-01-31 01:24:14 +01:00
|
|
|
"code/sys/win_bounds.cpp"
|
|
|
|
"code/sys/win_localization.cpp"
|
2023-02-05 14:54:04 +02:00
|
|
|
"code/sys/win_resource.rc"
|
2023-01-30 18:39:52 +01:00
|
|
|
)
|
|
|
|
else()
|
2023-02-01 00:29:02 +01:00
|
|
|
set(SOURCES_PLATFORM_SPECIFIC
|
|
|
|
"code/sys/con_tty.c"
|
|
|
|
"code/sys/sys_unix.c"
|
|
|
|
# These are still used even they're prefixed 'win'
|
|
|
|
"code/sys/win_bounds.cpp"
|
|
|
|
"code/sys/win_localization.cpp"
|
|
|
|
)
|
2023-01-30 18:39:52 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
### Common executable code
|
|
|
|
set(SOURCES_COMMON
|
2023-01-29 21:00:43 +01:00
|
|
|
"code/qcommon/alias.c"
|
|
|
|
"code/qcommon/cm_fencemask.c"
|
|
|
|
"code/qcommon/cm_load.c"
|
|
|
|
"code/qcommon/cm_patch.c"
|
|
|
|
"code/qcommon/cm_polylib.c"
|
|
|
|
"code/qcommon/cm_terrain.c"
|
|
|
|
"code/qcommon/cm_test.c"
|
|
|
|
"code/qcommon/cm_trace.c"
|
|
|
|
"code/qcommon/cm_trace_lbd.cpp"
|
|
|
|
"code/qcommon/cmd.c"
|
|
|
|
"code/qcommon/common.cpp"
|
|
|
|
"code/qcommon/crc.c"
|
|
|
|
"code/qcommon/cvar.c"
|
|
|
|
"code/qcommon/files.cpp"
|
|
|
|
"code/qcommon/huffman.cpp"
|
|
|
|
"code/qcommon/md4.c"
|
|
|
|
"code/qcommon/md5.c"
|
|
|
|
"code/qcommon/memory.c"
|
|
|
|
"code/qcommon/msg.cpp"
|
|
|
|
"code/qcommon/net_chan.c"
|
|
|
|
"code/qcommon/net_ip.c"
|
|
|
|
"code/qcommon/q_math.c"
|
|
|
|
"code/qcommon/q_shared.c"
|
|
|
|
"code/qcommon/tiki_main.cpp"
|
|
|
|
"code/qcommon/tiki_script.cpp"
|
|
|
|
"code/qcommon/unzip.c"
|
2023-01-31 00:53:24 +01:00
|
|
|
# Main stuff
|
|
|
|
"code/sys/sys_main.c"
|
|
|
|
"code/sys/sys_autoupdater.c"
|
|
|
|
"code/sys/con_log.c"
|
2023-02-05 01:38:42 +01:00
|
|
|
# Gamespy
|
|
|
|
"code/gamespy/sv_gamespy.c"
|
|
|
|
"code/gamespy/sv_gqueryreporting.c"
|
2023-01-29 21:00:43 +01:00
|
|
|
)
|
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
file(GLOB_RECURSE SOURCES_SKEL "code/tiki/*.cpp" "code/skeletor/*.cpp")
|
2023-01-29 23:31:13 +01:00
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
set(SOURCES_APP ${SOURCES_SHARED} ${SOURCES_COMMON} ${SOURCES_SKEL})
|
2023-01-29 23:31:13 +01:00
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
## Executables
|
2023-01-29 21:00:43 +01:00
|
|
|
|
2023-02-04 21:00:31 +01:00
|
|
|
include("code/gamespy/gcd.cmake")
|
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
### Client version
|
|
|
|
### TODO! Build the executable client (without the server part)
|
2023-01-29 22:58:51 +01:00
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
### Listen version
|
|
|
|
### TODO! Build the executable, full version (both client and server)
|
2023-01-29 23:31:13 +01:00
|
|
|
|
2023-01-30 18:39:52 +01:00
|
|
|
### Dedicated version
|
|
|
|
file(GLOB_RECURSE SOURCES_SERVER "code/server/*.c" "code/server/*.cpp")
|
|
|
|
set(SOURCES_SERVER_APP ${SOURCES_APP} ${SOURCES_SERVER})
|
2023-01-29 21:00:43 +01:00
|
|
|
|
2023-01-31 00:53:24 +01:00
|
|
|
add_executable(omohaaded ${SOURCES_SERVER_APP} ${SOURCES_PLATFORM_SPECIFIC} "code/null/null_client.c" "code/null/null_input.c" "code/null/null_snddma.c")
|
2023-01-29 23:31:13 +01:00
|
|
|
target_compile_definitions(omohaaded PRIVATE NO_SCRIPTENGINE DEDICATED TARGET_GAME_TYPE=${TARGET_GAME_TYPE})
|
2023-02-01 00:29:02 +01:00
|
|
|
target_compile_features(omohaaded PUBLIC cxx_std_17)
|
2023-02-05 01:38:42 +01:00
|
|
|
# Gamespy dependency
|
|
|
|
add_dependencies(omohaaded gcd)
|
|
|
|
target_link_libraries(omohaaded PRIVATE gcd)
|
2023-02-04 21:00:31 +01:00
|
|
|
target_include_directories(omohaaded PUBLIC "code/qcommon" "code/script" "code/gamespy" "code/server" "code/SDL2/include")
|
2023-01-29 23:31:13 +01:00
|
|
|
set_target_properties(omohaaded PROPERTIES OUTPUT_NAME "omohaaded${TARGET_BASE_SUFFIX}${TARGET_ARCH_SUFFIX}")
|
2023-01-29 21:00:43 +01:00
|
|
|
|
|
|
|
if(WIN32)
|
2023-02-05 01:38:42 +01:00
|
|
|
target_link_libraries(omohaaded PRIVATE wsock32 ws2_32)
|
|
|
|
target_link_libraries(omohaaded PRIVATE winmm)
|
2023-02-03 20:05:34 +01:00
|
|
|
elseif(UNIX)
|
2023-02-05 01:38:42 +01:00
|
|
|
target_link_libraries(omohaaded PRIVATE ${CMAKE_DL_LIBS})
|
2023-01-29 21:00:43 +01:00
|
|
|
endif()
|
2023-01-29 23:31:13 +01:00
|
|
|
|
2023-02-01 22:45:04 +01:00
|
|
|
INSTALL(TARGETS omohaaded DESTINATION "./")
|
2023-01-29 23:31:13 +01:00
|
|
|
|