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