This commit is contained in:
2025-11-24 14:19:51 +05:30
commit f5c1412b28
6734 changed files with 1527575 additions and 0 deletions

25
Lib/CMakeLists.txt Normal file
View File

@ -0,0 +1,25 @@
#
# 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) 2017-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 2.6)
set(SLIKENET_INTERNAL_INCLUDE_DIRS
${SLikeNet_SOURCE_DIR}/Source/include
${SLikeNet_SOURCE_DIR}/DependentExtensions
)
if(SLIKENET_ENABLE_STATIC)
add_subdirectory(LibStatic)
endif()
if(SLIKENET_ENABLE_DLL)
add_subdirectory(DLL)
endif()