build/cmake/DefineOptions.cmake: Minor improvement in logging for 'WITH_MT'
diff --git a/build/cmake/DefineOptions.cmake b/build/cmake/DefineOptions.cmake
index 1fa7a56..3cca31e 100644
--- a/build/cmake/DefineOptions.cmake
+++ b/build/cmake/DefineOptions.cmake
@@ -145,7 +145,7 @@
# Visual Studio only options
if(MSVC)
- option(WITH_MT "Build using MT instead of MD (MSVC only)" OFF)
+ option(WITH_MT "Build using the static runtime 'MT' instead of the shared DLL-specific runtime 'MD' (MSVC only)" OFF)
endif(MSVC)
macro(MESSAGE_DEP flag summary)
@@ -207,6 +207,9 @@
message(STATUS " Build Python library: ${BUILD_PYTHON}")
MESSAGE_DEP(WITH_PYTHON "Disabled by WITH_PYTHON=OFF")
MESSAGE_DEP(PYTHONLIBS_FOUND "Python libraries missing")
+if(MSVC)
+ message(STATUS " Using static runtime library: ${WITH_MT}")
+endif(MSVC)
message(STATUS)
message(STATUS)
message(STATUS "----------------------------------------------------------")