mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
11 lines
230 B
CMake
11 lines
230 B
CMake
set(DSERVER_SOURCES
|
|
"Server.cpp")
|
|
|
|
add_library(dServer STATIC ${DSERVER_SOURCES})
|
|
|
|
target_include_directories(dServer PUBLIC ".")
|
|
|
|
target_include_directories(dServer PRIVATE
|
|
${PROJECT_SOURCE_DIR}/dCommon/ # BinaryPathFinder.h
|
|
)
|