2023-11-18 00:47:18 +00:00
|
|
|
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()
|
|
|
|
|
2024-03-06 02:13:24 +00:00
|
|
|
add_library(dDatabaseGame STATIC ${DDATABASE_GAMEDATABASE_SOURCES})
|
|
|
|
target_include_directories(dDatabaseGame PUBLIC "."
|
|
|
|
"ITables" PRIVATE "MySQL"
|
|
|
|
"${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}>"
|
|
|
|
)
|