From e7d5e3a4c280de1800164eff45dd09b96804132f Mon Sep 17 00:00:00 2001 From: Darice L Guittet Date: Tue, 10 Nov 2020 10:34:50 -0700 Subject: [PATCH] rename skip_tools to SAM_SKIP_TOOLS (#111) --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e671ac4e..7a7aa6ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,10 +6,10 @@ cmake_minimum_required(VERSION 3.11) -option(skip_tools "Skips the wex sandbox and Dview builds" OFF) +option(SAM_SKIP_TOOLS "Skips the wex sandbox and Dview builds" OFF) # -# If project isn't system_advisor_model and skip_tools=1, +# If project isn't system_advisor_model and SAM_SKIP_TOOLS=1, # environment vars LK_LIB and LKD_LIB can be used to specify where to find those libraries # @@ -98,6 +98,6 @@ endif () ##################################################################################################################### add_subdirectory(src) -if (NOT skip_tools) +if (NOT SAM_SKIP_TOOLS) add_subdirectory(tools) endif()