From 7c9c8c8f2dc8384333c82d4750fad435e8b65393 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 16:06:54 +0200 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt 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)