From e7a941875bd7d7c6de68652a3588608a38cdfb2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 12 Mar 2019 17:40:33 +0100 Subject: [PATCH] Platform: show more preprocessor info in magnum-gl-info. --- src/Magnum/Platform/gl-info.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Magnum/Platform/gl-info.cpp b/src/Magnum/Platform/gl-info.cpp index 73822f95a..29ad43753 100644 --- a/src/Magnum/Platform/gl-info.cpp +++ b/src/Magnum/Platform/gl-info.cpp @@ -256,7 +256,10 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat Debug() << " CORRADE_TARGET_WINDOWS_RT"; #endif #ifdef CORRADE_TARGET_EMSCRIPTEN - Debug() << " CORRADE_TARGET_EMSCRIPTEN"; + Debug() << " CORRADE_TARGET_EMSCRIPTEN (" << Debug::nospace + << __EMSCRIPTEN_major__ << Debug::nospace << "." << Debug::nospace + << __EMSCRIPTEN_minor__ << Debug::nospace << "." << Debug::nospace + << __EMSCRIPTEN_tiny__ << Debug::nospace << ")"; #endif #ifdef CORRADE_TARGET_ANDROID Debug() << " CORRADE_TARGET_ANDROID"; @@ -267,6 +270,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_TARGET_ARM Debug() << " CORRADE_TARGET_ARM"; #endif + #ifdef CORRADE_TARGET_POWERPC + Debug() << " CORRADE_TARGET_POWERPC"; + #endif #ifdef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT Debug() << " CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT"; #endif