From 7f23ca3fd2bc3ad601fc7dd32e6f2ea9ded83fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 25 Oct 2013 17:23:50 +0200 Subject: [PATCH] Platform: print {CORRADE,MAGNUM}_BUILD_DEPRECATED flags in magnum-info. --- src/Platform/magnum-info.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Platform/magnum-info.cpp b/src/Platform/magnum-info.cpp index 2349b7a43..228e4d164 100644 --- a/src/Platform/magnum-info.cpp +++ b/src/Platform/magnum-info.cpp @@ -94,6 +94,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_GCC47_COMPATIBILITY Debug() << " CORRADE_GCC47_COMPATIBILITY"; #endif + #ifdef CORRADE_BUILD_DEPRECATED + Debug() << " CORRADE_BUILD_DEPRECATED"; + #endif #ifdef CORRADE_BUILD_STATIC Debug() << " CORRADE_BUILD_STATIC"; #endif @@ -109,6 +112,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat #ifdef CORRADE_TARGET_EMSCRIPTEN Debug() << " CORRADE_TARGET_EMSCRIPTEN"; #endif + #ifdef MAGNUM_BUILD_DEPRECATED + Debug() << " MAGNUM_BUILD_DEPRECATED"; + #endif #ifdef MAGNUM_BUILD_STATIC Debug() << " MAGNUM_BUILD_STATIC"; #endif