Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:12:57 +02:00
parent b24ac9e00a
commit 9e9b9e21a8

13
CMakeLists.txt Normal file
View File

@@ -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)