Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 22:37:45 +02:00
parent 5bd4447e2a
commit db376d03cb

13
CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
set(HEADERS
helloworldapplication.h
helloworldplugin.h
)
set(SOURCES
helloworldapplication.cpp
helloworldplugin.cpp
)
add_library(helloworldplugin SHARED ${HEADERS} ${SOURCES})
target_link_libraries(helloworldplugin Qt5::Core Qt5::Network webserverlib)