18 lines
450 B
CMake
18 lines
450 B
CMake
# CMakeList.txt : Top-level CMake project file, do global configuration
|
|
# and include sub-projects here.
|
|
#
|
|
cmake_minimum_required (VERSION 3.8)
|
|
|
|
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
|
|
set (CMAKE_SYSTEM_VERSION 8.1 CACHE TYPE INTERNAL FORCE) #Force 8.1 SDK, to keep it compatible with win7
|
|
endif()
|
|
|
|
project ("CCEngineServer")
|
|
|
|
IF(WIN32)
|
|
ADD_DEFINITIONS(/bigobj)
|
|
ENDIF(WIN32)
|
|
|
|
# Include sub-projects.
|
|
add_subdirectory ("CCEngineServer")
|