summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-10-23 12:24:40 -0400
committerGravatar Lioncash2018-10-23 12:24:43 -0400
commit289adf87acc377a5475c7b629e06f612bdafa15c (patch)
treef4c048b3c547b56643ae8420539c5d4f2d01c018
parentcommon: Remove memory_util.cpp/.h (diff)
downloadyuzu-289adf87acc377a5475c7b629e06f612bdafa15c.tar.gz
yuzu-289adf87acc377a5475c7b629e06f612bdafa15c.tar.xz
yuzu-289adf87acc377a5475c7b629e06f612bdafa15c.zip
CMakeLists: Remove EMU_ARCH_BITS definition
This was only ever used by the now-removed memory_util functions. Also, given we don't plan to support 32-bit architectures, this is just a leftover from citra at this point.
-rw-r--r--CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6e98b557e..f6a67950d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -178,10 +178,6 @@ endif()
178set_property(DIRECTORY APPEND PROPERTY 178set_property(DIRECTORY APPEND PROPERTY
179 COMPILE_DEFINITIONS $<$<CONFIG:Debug>:_DEBUG> $<$<NOT:$<CONFIG:Debug>>:NDEBUG>) 179 COMPILE_DEFINITIONS $<$<CONFIG:Debug>:_DEBUG> $<$<NOT:$<CONFIG:Debug>>:NDEBUG>)
180 180
181
182math(EXPR EMU_ARCH_BITS ${CMAKE_SIZEOF_VOID_P}*8)
183add_definitions(-DEMU_ARCH_BITS=${EMU_ARCH_BITS})
184
185# System imported libraries 181# System imported libraries
186# ====================== 182# ======================
187 183