From b138433c0b8294c8fcf5c8e5dbce3903ed7b3457 Mon Sep 17 00:00:00 2001 From: Jose Luis Blanco Claraco Date: Mon, 28 Nov 2022 21:03:20 +0100 Subject: [PATCH] fix wrong cmake cmd args order --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a219f9e..87a02bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ find_package(mrpt-nav REQUIRED) # Targets: add_subdirectory(libselfdriving) -option(SELFDRIVING_BUILD_APPS ON "Build selfdriving cli/gui tools") +option(SELFDRIVING_BUILD_APPS "Build selfdriving cli/gui tools" ON) if (SELFDRIVING_BUILD_APPS) add_subdirectory(apps) endif()