Files
DarkflameServer/dServer/CMakeLists.txt
David Markowitz fb166bd24d fix: security vulnerabilities
Tested that all functions related to the touched files work

will test sqlite on a CI build
2026-06-06 23:13:09 -07:00

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)