Como: detectar /clr compilação
Use o _MANAGED ou _M_CEE macro para ver se um módulo é compilado com /clr.Para mais informações, consulte /CLR (common Language Runtime Compilation).
Para obter mais informações sobre macros, consulte Macros predefinidas.
Exemplo
// detect_CLR_compilation.cpp
// compile with: /clr
#include <stdio.h>
int main() {
#if (_MANAGED == 1) || (_M_CEE == 1)
printf_s("compiling with /clr\n");
#else
printf_s("compiling without /clr\n");
#endif
}