mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
14 lines
363 B
CMake
14 lines
363 B
CMake
|
set(DDATABASE_SOURCES "CDClientDatabase.cpp"
|
||
|
"CDClientManager.cpp"
|
||
|
"Database.cpp"
|
||
|
"MigrationRunner.cpp")
|
||
|
|
||
|
add_subdirectory(Tables)
|
||
|
|
||
|
foreach(file ${DDATABASE_TABLES_SOURCES})
|
||
|
set(DDATABASE_SOURCES ${DDATABASE_SOURCES} "Tables/${file}")
|
||
|
endforeach()
|
||
|
|
||
|
add_library(dDatabase STATIC ${DDATABASE_SOURCES})
|
||
|
target_link_libraries(dDatabase sqlite3 mariadbConnCpp)
|