diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0bb8957 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +project(DbPicSync) + +set(HEADERS +) + +set(SOURCES + main.cpp +) + +add_executable(picsync ${HEADERS} ${SOURCES}) + +target_link_libraries(picsync Qt5::Core)