Skip to content

Commit b798d47

Browse files
committed
CMakeLists.txt: Correct bug where the setting of options are not printed correctly
1 parent 9e3c6bc commit b798d47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ endif()
1313

1414
macro(VERBOSE_OPTION ARG DESC)
1515
option(${ARG} ${DESC} ${ARGN})
16-
message("-- Option: ${ARG}: ${ARGN}")
16+
message("-- Option: ${ARG}: ${${ARG}}")
1717
endmacro()
1818

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

0 commit comments

Comments
 (0)