46 lines
1.6 KiB
CMake
46 lines
1.6 KiB
CMake
#
|
|
# This file was taken from RakNet 4.082.
|
|
# Please see licenses/RakNet license.txt for the underlying license and related copyright.
|
|
#
|
|
#
|
|
# Modified work: Copyright (c) 2016-2019, SLikeSoft UG (haftungsbeschränkt)
|
|
#
|
|
# This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
|
|
# license found in the license.txt file in the root directory of this source tree.
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.12)
|
|
|
|
project(SLikeNetLibStatic)
|
|
|
|
FILE(GLOB ALL_HEADER_SRCS ${SLikeNet_SOURCE_DIR}/Source/include/slikenet/*.h)
|
|
FILE(GLOB ALL_COMPATIBILITY_HEADER_SRC ${SLikeNet_SOURCE_DIR}/Source/*.h)
|
|
FILE(GLOB ALL_COMPATIBILITY_HEADER_SRC_2 ${SLikeNet_SOURCE_DIR}/Source/slikenet/*.h)
|
|
FILE(GLOB ALL_CPP_SRCS ${SLikeNet_SOURCE_DIR}/Source/src/*.cpp)
|
|
FILE(GLOB CRYPTO_CPP_SRCS ${SLikeNet_SOURCE_DIR}/Source/src/crypto/*.cpp)
|
|
|
|
add_library(SLikeNetLibStatic STATIC ${ALL_CPP_SRCS} ${CRYPTO_CPP_SRCS} ${ALL_HEADER_SRCS})
|
|
|
|
target_include_directories(SLikeNetLibStatic PUBLIC ${SLikeNet_SOURCE_DIR}/Source/include)
|
|
|
|
# set the version number
|
|
set_target_properties(SLikeNetLibStatic PROPERTIES
|
|
VERSION ${SLikeNet_VERSION}
|
|
SOVERSION ${SLikeNet_API_VERSION}
|
|
)
|
|
|
|
# by default we build the retail configuration
|
|
add_definitions(-D_RETAIL)
|
|
|
|
IF(WIN32 AND NOT UNIX)
|
|
add_definitions(-DWIN32 -D_RAKNET_DLL -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_SECURE_NO_DEPRECATE)
|
|
SET( CMAKE_CXX_FLAGS "/GS- /GR-" )
|
|
ELSE(WIN32 AND NOT UNIX)
|
|
set_target_properties(SLikeNetLibStatic PROPERTIES
|
|
OUTPUT_NAME "slikenet"
|
|
)
|
|
ENDIF(WIN32 AND NOT UNIX)
|
|
|
|
target_link_libraries(SLikeNetLibStatic PRIVATE ${SLIKENET_LIBRARY_LIBS})
|
|
|