add database manager

This commit is contained in:
2017-02-21 02:15:48 +03:00
parent 6bc4668271
commit 8261f610f7
11 changed files with 631 additions and 7 deletions

View File

@ -1,12 +1,12 @@
# main qt libraries
find_package(Qt5 5.6.0 REQUIRED COMPONENTS Core DBus Test)
find_package(Qt5 5.6.0 REQUIRED COMPONENTS Core DBus Sql Test)
add_definitions(
${Qt5Core_DEFINITIONS} ${Qt5DBus_DEFINITIONS}
${Qt5Core_DEFINITIONS} ${Qt5DBus_DEFINITIONS} ${Qt5Sql_DEFINITIONS}
)
set(Qt_INCLUDE
${Qt5Core_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS}
${Qt5Core_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS} ${Qt5Sql_INCLUDE_DIRS}
)
set(Qt_LIBRARIES
${Qt5Core_LIBRARIES} ${Qt5DBus_LIBRARIES}
${Qt5Core_LIBRARIES} ${Qt5DBus_LIBRARIES} ${Qt5Sql_LIBRARIES}
)