|
|
|
|
@ -23,6 +23,8 @@
|
|
|
|
|
# mode for GCC 4.7 |
|
|
|
|
# CORRADE_GCC46_COMPATIBILITY - Defined if compiled with compatibility |
|
|
|
|
# mode for GCC 4.6 |
|
|
|
|
# CORRADE_BUILD_DEPRECATED - Defined if compiled with deprecated APIs |
|
|
|
|
# included |
|
|
|
|
# CORRADE_BUILD_STATIC - Defined if compiled as static libraries |
|
|
|
|
# CORRADE_TARGET_NACL - Defined if compiled for Google Chrome |
|
|
|
|
# Native Client |
|
|
|
|
@ -158,6 +160,10 @@ string(FIND "${_corradeConfigure}" "#define CORRADE_GCC47_COMPATIBILITY" _GCC47_
|
|
|
|
|
if(NOT _GCC47_COMPATIBILITY EQUAL -1) |
|
|
|
|
set(CORRADE_GCC47_COMPATIBILITY 1) |
|
|
|
|
endif() |
|
|
|
|
string(FIND "${_corradeConfigure}" "#define CORRADE_BUILD_DEPRECATED" _BUILD_DEPRECATED) |
|
|
|
|
if(NOT _BUILD_DEPRECATED EQUAL -1) |
|
|
|
|
set(CORRADE_BUILD_DEPRECATED 1) |
|
|
|
|
endif() |
|
|
|
|
string(FIND "${_corradeConfigure}" "#define CORRADE_BUILD_STATIC" _BUILD_STATIC) |
|
|
|
|
if(NOT _BUILD_STATIC EQUAL -1) |
|
|
|
|
set(CORRADE_BUILD_STATIC 1) |
|
|
|
|
|