Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:12:35 +02:00
parent 04b8ade09e
commit f0808efd4b

19
CMakeLists.txt Normal file
View File

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