Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/finance/alkimia/files/patch-CMakeLists.txt
16461 views
1
Xmlgui is only needed for the tools.
2
3
--- CMakeLists.txt.orig 2025-06-21 11:46:33 UTC
4
+++ CMakeLists.txt
5
@@ -172,8 +172,12 @@ else()
6
IconThemes
7
${PLASMA_COMPONENT}
8
TextWidgets
9
- XmlGui
10
)
11
+ if(BUILD_TOOLS)
12
+ list(APPEND KF_PRIVATE_COMPONENTS
13
+ XmlGui
14
+ )
15
+ endif()
16
find_package(KF${QT_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED COMPONENTS ${KF_PRIVATE_COMPONENTS} ${KF_PUBLIC_COMPONENTS})
17
18
macro(ecm_add_executable)
19
20