Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygen_feedback.h
Go to the documentation of this file.
00001 /* Helper header to give feedback about build environment configuration 00002 * thanks to #pragma message directives. 00003 */ 00004 00005 #if defined (_STLP_VERBOSE) 00006 # define _STLP_VERBOSE_MODE_SUPPORTED 00007 00008 # if defined (_STLP_COMPILER) 00009 # pragma message (_STLP_COMPILER) 00010 # endif 00011 00012 # if defined (_STLP_NO_RTTI) 00013 # pragma message ("STLport: RTTI support -> Disabled") 00014 # else 00015 # pragma message ("STLport: RTTI support -> Enabled") 00016 # endif 00017 00018 # if defined (_STLP_HAS_NO_EXCEPTIONS) 00019 # pragma message ("STLport: Exception support -> Disabled") 00020 # else 00021 # pragma message ("STLport: Exception support -> Enabled") 00022 # endif 00023 00024 # if defined (_STLP_THREADS) 00025 # pragma message ("STLport: Threading model -> Multi") 00026 # else 00027 # pragma message ("STLport: Threading model -> Mono") 00028 # endif 00029 00030 # if defined (_STLP_USE_DYNAMIC_LIB) 00031 # pragma message ("STLport: Library model -> Dynamic") 00032 # else 00033 # pragma message ("STLport: Library model -> Static") 00034 # endif 00035 00036 # if defined (_STLP_USING_CROSS_NATIVE_RUNTIME_LIB) 00037 # if defined (_STLP_USE_DYNAMIC_LIB) 00038 # pragma message ("STLport: Native library model -> Static") 00039 # else 00040 # pragma message ("STLport: Native library model -> Dynamic") 00041 # endif 00042 # endif 00043 #endif Generated on Sat May 26 2012 04:28:24 for ReactOS by
1.7.6.1
|