From e36594205094080a1bc30643cddaf0c87d38bb60 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 16 Feb 2023 18:55:36 -0800 Subject: [PATCH] cmake: build kddockwidgets into static lib There might be a way to make shared libs happy, but this seemed easier --- ext/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt index efa25d8a3..857ee727a 100644 --- a/ext/CMakeLists.txt +++ b/ext/CMakeLists.txt @@ -15,4 +15,6 @@ # along with this program. If not, see . add_subdirectory(core) + +set(KDDockWidgets_STATIC ON) add_subdirectory(KDDockWidgets)