Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:38:32 +02:00
parent 18e3f03b69
commit 6734f145a9

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
set(HEADERS
wifilampapplication.h
wifilampclient.h
wifilampplugin.h
)
set(SOURCES
wifilampapplication.cpp
wifilampclient.cpp
wifilampplugin.cpp
)
add_library(wifilampplugin SHARED ${HEADERS} ${SOURCES})
target_link_libraries(wifilampplugin Qt5::Core Qt5::Network webserverlib)