Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:54 +02:00
parent ce6769e8ff
commit 7c9c8c8f2d

12
CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
project(DbPicSync)
set(HEADERS
)
set(SOURCES
main.cpp
)
add_executable(picsync ${HEADERS} ${SOURCES})
target_link_libraries(picsync Qt5::Core)