Skip to content

Commit

Permalink
Replace Unicode characters with ON/OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Dec 10, 2024
1 parent 8401ff7 commit aa97c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/ecbuild_add_option.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ macro( ecbuild_add_option )
## Update the description of the feature summary
# Choose the correct tick
if (ENABLE_${_p_FEATURE})
set ( _tick "")
set ( _tick "ON")
else()
set ( _tick "")
set ( _tick "OFF")
endif()
set(_enabled "${ENABLE_${_p_FEATURE}}")
get_property( _enabled_features GLOBAL PROPERTY ENABLED_FEATURES )
Expand Down

0 comments on commit aa97c2a

Please sign in to comment.