mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-09-06 07:18:42 +00:00
WIP
This commit is contained in:
29
dSimClient/CMakeLists.txt
Normal file
29
dSimClient/CMakeLists.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
set(DSIMCLIENT_SOURCES
|
||||
"SimClient.cpp"
|
||||
"SimUser.cpp"
|
||||
"SimUser.h"
|
||||
"SimWorld.cpp"
|
||||
"SimWorld.h"
|
||||
"SimBehavior.cpp"
|
||||
"SimBehavior.h"
|
||||
"SimConfig.cpp"
|
||||
"SimConfig.h"
|
||||
)
|
||||
|
||||
add_executable(SimClient ${DSIMCLIENT_SOURCES})
|
||||
|
||||
target_link_libraries(SimClient ${COMMON_LIBRARIES})
|
||||
target_include_directories(SimClient PRIVATE
|
||||
"${PROJECT_SOURCE_DIR}/dCommon"
|
||||
"${PROJECT_SOURCE_DIR}/dDatabase"
|
||||
"${PROJECT_SOURCE_DIR}/dNet"
|
||||
"${PROJECT_SOURCE_DIR}/thirdparty/raknet/Source"
|
||||
"${PROJECT_SOURCE_DIR}/dServer"
|
||||
)
|
||||
|
||||
# Copy the configuration file to build directory
|
||||
configure_file(
|
||||
"${PROJECT_SOURCE_DIR}/resources/simclient.ini"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/simclient.ini"
|
||||
COPYONLY
|
||||
)
|
Reference in New Issue
Block a user