cmake: expose the host variant in menuconfig
authorPeter Korsgaard <peter@korsgaard.com>
Tue, 19 Sep 2017 10:43:49 +0000 (12:43 +0200)
committerArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tue, 19 Sep 2017 19:44:28 +0000 (21:44 +0200)
With the addition of the sdk support it may be interesting to build
host-cmake even though no packages need it, so expose it in menuconfig.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
package/Config.in.host
package/cmake/Config.in.host [new file with mode: 0644]

index df3893aa9c5f09c9c3ff301e02983ec6bd69e335..9e05ec659c3da672ceb92f1a9aea18e27da93d71 100644 (file)
@@ -4,6 +4,7 @@ menu "Host utilities"
        source "package/android-tools/Config.in.host"
        source "package/cbootimage/Config.in.host"
        source "package/checkpolicy/Config.in.host"
+       source "package/cmake/Config.in.host"
        source "package/cramfs/Config.in.host"
        source "package/dfu-util/Config.in.host"
        source "package/dos2unix/Config.in.host"
diff --git a/package/cmake/Config.in.host b/package/cmake/Config.in.host
new file mode 100644 (file)
index 0000000..b2e210e
--- /dev/null
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_HOST_CMAKE
+       bool "host cmake"
+       help
+         CMake is an open-source, cross-platform family of tools
+         designed to build, test and package software. CMake is used
+         to control the software compilation process using simple
+         platform and compiler independent configuration files, and
+         generate native makefiles and workspaces that can be used in
+         the compiler environment of your choice.
+
+         http://www.cmake.org/