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)