diff options
author | N00byKing <N00byKing@hotmail.de> | 2018-03-21 18:27:07 +0100 |
---|---|---|
committer | N00byKing <N00byKing@hotmail.de> | 2018-03-21 19:03:20 +0100 |
commit | 34b733e70edc0a874892a8207c0592e538cfecc5 (patch) | |
tree | 44bf4c1c124e21f577e1b72ddf7276743b9590ba /src/common/platform.h | |
parent | 4721ea4523c991c2a1bd28947b45e506bc988a8d (diff) |
CMake: Set EMU_ARCH_BITS in CMakeLists.txt
Diffstat (limited to 'src/common/platform.h')
-rw-r--r-- | src/common/platform.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/common/platform.h b/src/common/platform.h deleted file mode 100644 index c62fb7c8f..000000000 --- a/src/common/platform.h +++ /dev/null @@ -1,34 +0,0 @@ -/** - * Copyright (C) 2005-2012 Gekko Emulator - * - * @file platform.h - * @author ShizZy <shizzy247@gmail.com> - * @date 2012-02-11 - * @brief Platform detection macros for portable compilation - * - * @section LICENSE - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details at - * http://www.gnu.org/copyleft/gpl.html - * - * Official project repository can be found at: - * http://code.google.com/p/gekko-gc-emu/ - */ - -#pragma once - -//////////////////////////////////////////////////////////////////////////////////////////////////// -// Platform detection - -#if defined(ARCHITECTURE_x86_64) || defined(__aarch64__) -#define EMU_ARCH_BITS 64 -#elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM) -#define EMU_ARCH_BITS 32 -#endif |