From 77b377ee0b6d17d8e92755e6006f863b3b663a6e Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 22:37:59 +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..b8c3577 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +set(HEADERS + proxyapplication.h + proxyplugin.h +) + +set(SOURCES + proxyapplication.cpp + proxyplugin.cpp +) + +add_library(proxyplugin SHARED ${HEADERS} ${SOURCES}) + +target_link_libraries(proxyplugin Qt5::Core Qt5::Network webserverlib)