123456789101112131415161718192021222324 |
- #pragma once
- #if _MSC_VER
- #include "Compiler/CompilerEnvironmentMsvc.h"
- #elif __clang__
- #include "Compiler/CompilerEnvironmentClang.h"
- #elif __GNUC__ || __GCC__
- #include "Compiler/CompilerEnvironmentGcc.h"
- #else
- #error "Unknown Compiler"
- #endif
- #include "BaselibPlatformSpecificEnvironment.h"
- #include "VerifyPlatformEnvironment.h"
- #ifndef BASELIB_DEBUG_TRAP
- #define BASELIB_DEBUG_TRAP COMPILER_DEBUG_TRAP
- #endif
|