From e8ed1ea24611f53d631afb6e21dd168f850a6445 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 16:06:23 +0200 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5282690 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +project(DbDatabaseTree) + +set(HEADERS + mymodel.h +) + +set(SOURCES + main.cpp + mymodel.cpp +) + +add_executable(databasetree ${HEADERS} ${SOURCES}) + +target_link_libraries(databasetree Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Sql)