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