diff options
Diffstat (limited to 'asl/config.hpp')
-rw-r--r-- | asl/config.hpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/asl/config.hpp b/asl/config.hpp deleted file mode 100644 index e182569..0000000 --- a/asl/config.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#if defined(_WIN32) - #define ASL_OS_WINDOWS 1 -#elif defined(__linux__) - #define ASL_OS_LINUX 1 -#else - #error Unknown OS -#endif - -#if defined(__clang__) && defined(_MSC_VER) - #define ASL_COMPILER_CLANG_CL 1 -#elif defined(__clang__) - #define ASL_COMPILER_CLANG 1 -#else - #error Unknown compiler -#endif |