summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-12-16 17:54:17 -0500
committerAaron Bauman <bman@gentoo.org>2020-12-16 18:13:24 -0500
commitd08198baec3e243336ae1085065fcdc3f12122ef (patch)
tree77c4a9dde131d7840c7933495b3d5926db98fde0 /eclass/cmake.eclass
parenteclass/chromium-2: fixup documentation (diff)
downloadgentoo-d08198baec3e243336ae1085065fcdc3f12122ef.tar.gz
gentoo-d08198baec3e243336ae1085065fcdc3f12122ef.tar.bz2
gentoo-d08198baec3e243336ae1085065fcdc3f12122ef.zip
eclass/cmake: fixup documentation
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'eclass/cmake.eclass')
-rw-r--r--eclass/cmake.eclass12
1 files changed, 12 insertions, 0 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass
index 62fa02715700..384556fd7d14 100644
--- a/eclass/cmake.eclass
+++ b/eclass/cmake.eclass
@@ -17,6 +17,11 @@
# out-of-source builds (default), in-source builds and an implementation of the
# well-known use_enable function for CMake.
+# @VARIABLE: _CMAKE_ECLASS
+# @INTERNAL
+# @DESCRIPTION:
+# If null set to 1
+
if [[ -z ${_CMAKE_ECLASS} ]]; then
_CMAKE_ECLASS=1
@@ -135,7 +140,10 @@ _cmake_banned_func() {
die "${FUNCNAME[1]} is banned. use -D$1<related_CMake_variable>=\"\$(usex $2)\" instead"
}
+# @FUNCTION: _cmake_check_build_dir
+# @DESCRIPTION:
# Determine using IN or OUT source build
+
_cmake_check_build_dir() {
: ${CMAKE_USE_DIR:=${S}}
if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then
@@ -268,8 +276,12 @@ cmake-utils_use() { _cmake_banned_func "" "$@" ; }
# Banned. Use -DNOFOO=$(usex !foo) instead.
cmake-utils_useno() { _cmake_banned_func "" "$@" ; }
+# @FUNCTION: _cmake_modify-cmakelists
+# @INTERNAL
+# @DESCRIPTION:
# Internal function for modifying hardcoded definitions.
# Removes dangerous definitions that override Gentoo settings.
+
_cmake_modify-cmakelists() {
debug-print-function ${FUNCNAME} "$@"