mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
13 lines
276 B
CMake
13 lines
276 B
CMake
set(DSERVER_SOURCES
|
|
"Server.cpp")
|
|
|
|
add_library(dServer STATIC ${DSERVER_SOURCES})
|
|
|
|
target_link_libraries(dServer PRIVATE fmt)
|
|
|
|
target_include_directories(dServer PUBLIC ".")
|
|
|
|
target_include_directories(dServer PRIVATE
|
|
"${PROJECT_SOURCE_DIR}/dCommon/" # BinaryPathFinder.h
|
|
)
|