Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:13:03 +02:00
parent 30fad70d72
commit a37377a930

17
CMakeLists.txt Normal file
View File

@@ -0,0 +1,17 @@
set(HEADERS
sketchmainwindow.h
sketchplugin.h
)
set(SOURCES
sketchmainwindow.cpp
sketchplugin.cpp
)
set(FORMS
sketchmainwindow.ui
)
add_library(sketchplugin SHARED ${HEADERS} ${SOURCES} ${FORMS})
target_link_libraries(sketchplugin Qt5::Core Qt5::Gui Qt5::Widgets zeiterfassungguilib sketchlib)