Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:54 +02:00
parent b72882f230
commit 8f1e86f69b

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
project(DbPathFinder)
set(HEADERS
mainwindow.h mywidget.h
)
set(SOURCES
main.cpp
mainwindow.cpp
mywidget.cpp
)
add_executable(pathfinder ${HEADERS} ${SOURCES})
target_link_libraries(pathfinder Qt5::Core Qt5::Gui Qt5::Widgets)