Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:13:15 +02:00
parent 1b5a7563f6
commit 137fa9bb2b

17
CMakeLists.txt Normal file
View File

@@ -0,0 +1,17 @@
set(HEADERS
weatherplugin.h
weathersettings.h
weathersettingswidget.h
weatherwidget.h
)
set(SOURCES
weatherplugin.cpp
weathersettings.cpp
weathersettingswidget.cpp
weatherwidget.cpp
)
add_library(weatherplugin SHARED ${HEADERS} ${SOURCES})
target_link_libraries(weatherplugin Qt5::Core Qt5::Gui Qt5::Widgets zeiterfassungguilib)