From a141c401f78467bc15f62882fca5d55a007cacbb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 00:21:48 +0100 Subject: Reorganize everything --- asl/config.hpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 asl/config.hpp (limited to 'asl/config.hpp') 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 -- cgit