aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2013-05-09 09:20:00 -0700
committerChad Versace <chad.versace@linux.intel.com>2013-05-09 09:44:18 -0700
commit2fb18e9e1315e0b857f16c2ba974e79a159b5c82 (patch)
tree364b6e55050a42ceaca7ddc76ea1a2470903f326
parente8c1dc340f7ec5efd078d0a79ccff442056c71c6 (diff)
cmake: Use real name of CMake vars when printing summary
When printing the configuration summary, use the real names of the CMake variables. For example, print "CMAKE_C_FLAGS_DEBUG" instead of "CFLAGS_debug". This eliminates some confusion caused by the fake names. Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4b4e0d6..7b11572 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -373,10 +373,10 @@ message("Build type:")
message(" ${CMAKE_BUILD_TYPE}")
message("")
message("Tools:")
-message(" cc: ${CMAKE_C_COMPILER}")
-message(" CFLAGS_base: ${CMAKE_C_FLAGS}")
-message(" CFLAGS_debug: ${CMAKE_C_FLAGS_DEBUG}")
-message(" CFLAGS_release: ${CMAKE_C_FLAGS_RELEASE}")
+message(" CMAKE_C_COMPILER: ${CMAKE_C_COMPILER}")
+message(" CMAKE_C_FLAGS: ${CMAKE_C_FLAGS}")
+message(" CMAKE_C_FLAGS_DEBUG: ${CMAKE_C_FLAGS_DEBUG}")
+message(" CMAKE_C_FLAGS_RELEASE: ${CMAKE_C_FLAGS_RELEASE}")
if(waffle_build_manpages OR waffle_build_htmldocs)
message(" xsltproc: ${waffle_xsltproc}")
endif()