From 98f2f3e22476121dfd9af1d98d2f4a321bfae4a9 Mon Sep 17 00:00:00 2001 From: Mike Solar Date: Sun, 19 Jul 2026 23:52:59 +0800 Subject: [PATCH] build: install liboakcore from the default target set core was added with EXCLUDE_FROM_ALL, which also excluded its install rules, so liboakcore.so never made it into packages. It now installs to the platform libdir (/usr/lib on this machine, verified via DESTDIR). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a4a779a5a..8b1809ae2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -298,7 +298,7 @@ endif() set(CMAKE_INCLUDE_CURRENT_DIR ON) list(APPEND OLIVE_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/third_party) -add_subdirectory(core EXCLUDE_FROM_ALL) +add_subdirectory(core) set(KDDockWidgets_STATIC ON CACHE INTERNAL "Force KDDockWidgets to build statically") set(KDDockWidgets_QT6 ${BUILD_QT6} CACHE INTERNAL "Conform KDDockWidgets' Qt 6 setting to ours")