mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
15 lines
384 B
CMake
15 lines
384 B
CMake
add_library(database
|
|
${CMAKE_SOURCE_DIR}/include/db/AuthTable.h
|
|
${CMAKE_SOURCE_DIR}/include/db/DBManager.h
|
|
${CMAKE_SOURCE_DIR}/include/db/InstanceTable.h
|
|
${CMAKE_SOURCE_DIR}/include/db/MetaTable.h
|
|
${CMAKE_SOURCE_DIR}/include/db/SettingsTable.h
|
|
${CMAKE_SOURCE_DIR}/libsrc/db/DBManager.cpp
|
|
)
|
|
|
|
target_link_libraries(database
|
|
hyperion
|
|
hyperion-utils
|
|
Qt${QT_VERSION_MAJOR}::Sql
|
|
)
|