From db376d03cb11d63a4000269696b1bfa572d18e44 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 22:37:45 +0200 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0e083b6 --- /dev/null +++ b/CMakeLists.txt @@ -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)