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)