mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-06-08 07:44:23 +00:00
Tested that all functions related to the touched files work will test sqlite on a CI build
13 lines
280 B
CMake
13 lines
280 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
|
|
)
|
|
|
|
target_link_libraries(dServer PRIVATE dCommon)
|