From 66563d661a4a27042706fa1f7af63d3f89c311d2 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 22:12:52 +0200 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3050db6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +set(HEADERS + profiledialog.h + profileplugin.h +) + +set(SOURCES + profiledialog.cpp + profileplugin.cpp +) + +set(FORMS + profiledialog.ui +) + +add_library(profileplugin SHARED ${HEADERS} ${SOURCES} ${FORMS}) + +target_link_libraries(profileplugin Qt5::Core Qt5::Gui Qt5::Widgets zeiterfassungguilib)