diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2025-01-27 17:11:39 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-07-05 23:07:05 +0800 |
commit | 83400193a5a2d7aa3de99023c216fc5fe5f3c375 (patch) | |
tree | 134d34f8fc7d828948c8fe0bbe9fc0f5893ef401 | |
parent | d7ac2efbafbf39d859e32ffa4fa85562c4c6d3f1 (diff) |
gnu: extra-cmake-modules: Add ECM_DIR native-search-path.
* gnu/packages/kde-frameworks.scm (extra-cmake-modules)[native-search-paths]:
Add ECM_DIR.
Change-Id: Id9977aba09dbf77bcfb0828809d2eabf9c7f6cbc
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 8dead7d4e6..52cd6c26f1 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -172,6 +172,12 @@ (add-after 'install 'check-post-install (assoc-ref %standard-phases 'check)) (delete 'check)))) + ;; use for cross-compiling. + (native-search-paths + (list (search-path-specification + (variable "ECM_DIR") + (separator #f) + (files '("share/ECM"))))) ;; optional dependencies - to save space, we do not add these inputs. ;; Sphinx > 1.2: ;; Required to build Extra CMake Modules documentation in Qt Help format. |