mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
adc9cd2876
* saving from a test works * testing works * Update SavingTests.cpp * test dServer stuff * tests * use dummy database and add missing pure fns * add more tests * add more tests * add rocket tests * Update BuffComponent.h * Update test_xml_data.xml * Update SavingTests.cpp * update
39 lines
1.0 KiB
CMake
39 lines
1.0 KiB
CMake
set(DDATABASE_GAMEDATABASE_SOURCES
|
|
"Database.cpp"
|
|
)
|
|
|
|
add_subdirectory(MySQL)
|
|
|
|
foreach(file ${DDATABSE_DATABSES_MYSQL_SOURCES})
|
|
set(DDATABASE_GAMEDATABASE_SOURCES ${DDATABASE_GAMEDATABASE_SOURCES} "MySQL/${file}")
|
|
endforeach()
|
|
|
|
add_subdirectory(TestSQL)
|
|
|
|
foreach(file ${DDATABSE_DATABSES_TEST_SQL_SOURCES})
|
|
set(DDATABASE_GAMEDATABASE_SOURCES ${DDATABASE_GAMEDATABASE_SOURCES} "TestSQL/${file}")
|
|
endforeach()
|
|
|
|
add_library(dDatabaseGame STATIC ${DDATABASE_GAMEDATABASE_SOURCES})
|
|
target_include_directories(dDatabaseGame PUBLIC "."
|
|
"ITables" PRIVATE "MySQL" "TestSQL"
|
|
"${PROJECT_SOURCE_DIR}/dCommon"
|
|
"${PROJECT_SOURCE_DIR}/dCommon/dEnums"
|
|
)
|
|
target_link_libraries(dDatabaseGame
|
|
PUBLIC MariaDB::ConnCpp
|
|
INTERFACE dCommon)
|
|
|
|
# Glob together all headers that need to be precompiled
|
|
file(
|
|
GLOB HEADERS_DDATABASE_GAME
|
|
LIST_DIRECTORIES false
|
|
ITables/*.h
|
|
)
|
|
|
|
# Need to specify to use the CXX compiler language here or else we get errors including <string>.
|
|
target_precompile_headers(
|
|
dDatabaseGame PRIVATE
|
|
"$<$<COMPILE_LANGUAGE:CXX>:${HEADERS_DDATABASE_GAME}>"
|
|
)
|