From aec9e63d0d6848f5a1ea12405ed844a849120126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 19 Jan 2014 17:27:14 +0100 Subject: [PATCH] Platform: display proper application class name in magnum-info. --- src/Magnum/Platform/magnum-info.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/Platform/magnum-info.cpp b/src/Magnum/Platform/magnum-info.cpp index 991705010..e2c3b77d0 100644 --- a/src/Magnum/Platform/magnum-info.cpp +++ b/src/Magnum/Platform/magnum-info.cpp @@ -90,7 +90,11 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat Debug() << " +---------------------------------------------------------+"; Debug() << ""; + #ifdef CORRADE_TARGET_NACL + Debug() << "Used application: Platform::WindowlessNaClApplication"; + #else Debug() << "Used application: Platform::WindowlessGlxApplication"; + #endif Debug() << "Compilation flags:"; #ifdef CORRADE_GCC46_COMPATIBILITY Debug() << " CORRADE_GCC46_COMPATIBILITY";