mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
10 lines
217 B
CMake
10 lines
217 B
CMake
|
file(
|
||
|
GLOB SOURCES_DDATABASE
|
||
|
LIST_DIRECTORIES false
|
||
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
||
|
*.cpp
|
||
|
Tables/*.cpp
|
||
|
)
|
||
|
|
||
|
add_library(dDatabase ${SOURCES_DDATABASE})
|
||
|
target_link_libraries(dDatabase sqlite3)
|