Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed Jan 17, 2024
1 parent 6d508bd commit aa04e5c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Settings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
## ##
######################################
######################################
if(DEFINED ENV{CI})
option(USE_SYSTEM_ROOT "Try to find a ROOT installation and use it" OFF)
set(CI TRUE)
if(DEFINED ENV{CI} OR DEFINED CI)
option(USE_SYSTEM_ROOT "Try to find a ROOT installation and use it" ON)
option(BUILD_DOCS "Build the docs" FALSE)
option(BUILD_TESTS "Build the tests" FALSE)
option(BUILD_EXAMPLES "Build the examples" FALSE)
Expand Down

0 comments on commit aa04e5c

Please sign in to comment.