Skip to content

Commit

Permalink
CMakeLists.txt: Correct bug where the setting of options are not prin…
Browse files Browse the repository at this point in the history
…ted correctly
  • Loading branch information
molysgaard committed Nov 8, 2023
1 parent 9e3c6bc commit b798d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif()

macro(VERBOSE_OPTION ARG DESC)
option(${ARG} ${DESC} ${ARGN})
message("-- Option: ${ARG}: ${ARGN}")
message("-- Option: ${ARG}: ${${ARG}}")
endmacro()

VERBOSE_OPTION(DO_CORE_BUILD "Only build essentials by default" ${CORE_BUILD_DEFAULT})
Expand Down

0 comments on commit b798d47

Please sign in to comment.