mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-01-28 06:29:53 +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
|
|
)
|