From 3cfa1ac3f38f336986f6183c5c4a48794c7f89d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 5 Oct 2014 17:19:57 +0200 Subject: [PATCH] Platform: print all CORRADE_TARGET_* flags in magnum-info. --- src/Magnum/Platform/magnum-info.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Magnum/Platform/magnum-info.cpp b/src/Magnum/Platform/magnum-info.cpp index 9dd6d4793..f584f8a81 100644 --- a/src/Magnum/Platform/magnum-info.cpp +++ b/src/Magnum/Platform/magnum-info.cpp @@ -178,6 +178,15 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_BUILD_STATIC Debug() << " CORRADE_BUILD_STATIC"; #endif + #ifdef CORRADE_TARGET_UNIX + Debug() << " CORRADE_TARGET_UNIX"; + #endif + #ifdef CORRADE_TARGET_APPLE + Debug() << " CORRADE_TARGET_APPLE"; + #endif + #ifdef CORRADE_TARGET_WINDOWS + Debug() << " CORRADE_TARGET_WINDOWS"; + #endif #ifdef CORRADE_TARGET_NACL Debug() << " CORRADE_TARGET_NACL"; #endif @@ -190,6 +199,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_TARGET_EMSCRIPTEN Debug() << " CORRADE_TARGET_EMSCRIPTEN"; #endif + #ifdef CORRADE_TARGET_ANDROID + Debug() << " CORRADE_TARGET_ANDROID"; + #endif #ifdef MAGNUM_BUILD_DEPRECATED Debug() << " MAGNUM_BUILD_DEPRECATED"; #endif