mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-09 03:58:14 +03:00
13 lines
421 B
Text
13 lines
421 B
Text
![]() |
cmake_minimum_required(VERSION 3.5)
|
||
|
project(omohserver)
|
||
|
|
||
|
add_subdirectory("../fgame" "./fgame")
|
||
|
|
||
|
file(GLOB_RECURSE SOURCES_SERVER "./*.c*")
|
||
|
|
||
|
add_library(omohserver STATIC ${SOURCES_SERVER})
|
||
|
target_compile_features(omohserver PUBLIC cxx_nullptr)
|
||
|
target_compile_features(omohserver PUBLIC c_variadic_macros)
|
||
|
target_link_libraries(omohserver PRIVATE qcommon qcommon_standalone)
|
||
|
target_link_libraries(omohserver PRIVATE gcd)
|