Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:23 +02:00
parent 913c723442
commit e8ed1ea246

14
CMakeLists.txt Normal file
View File

@@ -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)