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