Browse Source

Platform: mention CORRADE_GCC4[45]_COMPATIBILITY flags in magnum-info.

Vladimír Vondruš 13 years ago
parent
commit
1505b90adc
  1. 6
      src/Platform/magnum-info.cpp

6
src/Platform/magnum-info.cpp

@ -50,6 +50,12 @@ MagnumInfo::MagnumInfo(int& argc, char** argv): WindowlessGlxApplication(argc, a
{
Debug d;
d << "Compilation flags:";
#ifdef CORRADE_GCC44_COMPATIBILITY
d << "CORRADE_GCC44_COMPATIBILITY";
#endif
#ifdef CORRADE_GCC45_COMPATIBILITY
d << "CORRADE_GCC45_COMPATIBILITY";
#endif
#ifdef CORRADE_GCC46_COMPATIBILITY
d << "CORRADE_GCC46_COMPATIBILITY";
#endif

Loading…
Cancel
Save