cmake: Add deprecation warning to 32-bit builds

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2019-12-03 17:45:37 +01:00
parent df8ebd94ea
commit 0b14b65ba8
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ endif()
math(EXPR BITS "8*${CMAKE_SIZEOF_VOID_P}")
if("${BITS}" STREQUAL "32")
set(ARCH "x86")
message(STATUS "Stream Effects no longer supports 32-bit builds, you are on your own if you continue.")
else()
set(ARCH "x64")
endif()