Skip to content

Commit

Permalink
rename skip_tools to SAM_SKIP_TOOLS (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
dguittet authored Nov 10, 2020
1 parent 6dd3d96 commit e7d5e3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
#

Expand Down Expand Up @@ -98,6 +98,6 @@ endif ()
#####################################################################################################################

add_subdirectory(src)
if (NOT skip_tools)
if (NOT SAM_SKIP_TOOLS)
add_subdirectory(tools)
endif()

0 comments on commit e7d5e3a

Please sign in to comment.