[Buildroot] [PATCH 1/1] package/libuwsc: disable example

Fabrice Fontaine fontaine.fabrice at gmail.com
Sun Feb 21 18:58:12 UTC 2021


BUILD_EXAMPLE=OFF is already passed by cmake-package

Fixes:
 - http://autobuild.buildroot.org/results/f5256d5a3a86112f008506f1910d0600c491a2a0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
---
 ...001-CMakeLists.txt-add-BUILD_EXAMPLE.patch | 33 +++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 package/libuwsc/0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch

diff --git a/package/libuwsc/0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch b/package/libuwsc/0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch
new file mode 100644
index 0000000000..0c5814d818
--- /dev/null
+++ b/package/libuwsc/0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch
@@ -0,0 +1,33 @@
+From bb71b21eb9407479ad729b3c858b0fc350fae335 Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice at gmail.com>
+Date: Sun, 21 Feb 2021 19:39:59 +0100
+Subject: [PATCH] CMakeLists.txt: add BUILD_EXAMPLE
+
+Allow the user to disable example
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
+[Upstream status: https://github.com/zhaojh329/libuwsc/pull/30]
+---
+ CMakeLists.txt | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 110d933..c52ab79 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -2,7 +2,11 @@ cmake_minimum_required(VERSION 2.8)
+ 
+ project(libuwsc C)
+ 
++option(BUILD_EXAMPLE "Build example" ON)
++
+ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules/")
+ 
+ add_subdirectory(src)
+-add_subdirectory(example)
++if(BUILD_EXAMPLE)
++    add_subdirectory(example)
++endif()
+-- 
+2.30.0
+
-- 
2.30.0



More information about the buildroot mailing list