From a4b6155d879135d40f3881fde1233c5220a61035 Mon Sep 17 00:00:00 2001 From: casey langen Date: Sun, 13 Mar 2022 23:16:37 -0700 Subject: [PATCH] More colors to cmake output. --- .cmake/ConfigureStandalone.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.cmake/ConfigureStandalone.cmake b/.cmake/ConfigureStandalone.cmake index 17390af5a..ed1c696a8 100644 --- a/.cmake/ConfigureStandalone.cmake +++ b/.cmake/ConfigureStandalone.cmake @@ -1,5 +1,5 @@ if (${BUILD_STANDALONE} MATCHES "true") - message(STATUS "[standalone-build] ENABLED!") + message(STATUS "${BoldGreen}[standalone-build] ENABLED!${ColorReset}") set(BOOST_ROOT "/build/musikcube/vendor/bin") set(BOOST_INCLUDEDIR "${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/include") @@ -18,5 +18,5 @@ if (${BUILD_STANDALONE} MATCHES "true") "${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/lib") else() - message(STATUS "[standalone-build] *NOT* enabled!") -endif() \ No newline at end of file + message(STATUS "${BoldGreen}[standalone-build] *NOT* enabled!${ColorReset}") +endif()