From 200c0a0491566a445b5501d671a86a6ccf05e232 Mon Sep 17 00:00:00 2001 From: Hsuan-Ting Lu Date: Tue, 17 Jan 2023 23:06:23 -0500 Subject: [PATCH] CMakeLists.txt: Fix option string error Inferred desired behavior from conditional add_subdirectory code at https://github.com/eclipse/mraa/blob/8b1c54934e80edc2d36abac9d9c96fe1e01cb669/CMakeLists.txt#L224-L226 Signed-off-by: Hsuan-Ting Lu --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b12153e..f7c6f07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -160,7 +160,7 @@ option (ONEWIRE "Add Onewire support to mraa." ON) option (JSONPLAT "Add Platform loading via a json file." ON) option (IMRAA "Add Imraa support to mraa." OFF) option (FTDI4222 "Build with FTDI FT4222 subplatform support." OFF) -option (ENABLEEXAMPLES "Disable building of examples" ON) +option (ENABLEEXAMPLES "Enable building of examples" ON) option (INSTALLTOOLS "Install all tools" ON) option (BUILDTESTS "Override the addition of tests" ON) option (USEPYTHON3TESTS "Force tests to run with python3" OFF)