From b798d47ec44af7ff530fadafa44ef134e6ec9ce9 Mon Sep 17 00:00:00 2001 From: Morten Olsen Lysgaard Date: Wed, 8 Nov 2023 20:41:26 +0100 Subject: [PATCH] CMakeLists.txt: Correct bug where the setting of options are not printed correctly --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index edd4ffeb..63de3aa8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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})