From 291fa9a60aac61c5726ef611e95a034aadcddecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 11 Jul 2019 19:42:12 +0200 Subject: [PATCH] Platform: display also standard library defines in magnum-gl-info. --- src/Magnum/Platform/gl-info.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Magnum/Platform/gl-info.cpp b/src/Magnum/Platform/gl-info.cpp index 1bd88e5ca..d4387684a 100644 --- a/src/Magnum/Platform/gl-info.cpp +++ b/src/Magnum/Platform/gl-info.cpp @@ -277,6 +277,15 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_TARGET_POWERPC Debug() << " CORRADE_TARGET_POWERPC"; #endif + #ifdef CORRADE_TARGET_LIBCXX + Debug() << " CORRADE_TARGET_LIBCXX"; + #endif + #ifdef CORRADE_TARGET_DINKUMWARE + Debug() << " CORRADE_TARGET_DINKUMWARE"; + #endif + #ifdef CORRADE_TARGET_LIBSTDCXX + Debug() << " CORRADE_TARGET_LIBSTDCXX"; + #endif #ifdef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT Debug() << " CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT"; #endif