mirror of https://github.com/PCSX2/pcsx2.git
cmake: Disable SuperVU for non-Linux OS
Doesn't work on FreeBSD, would be annoying to port.
This commit is contained in:
parent
bde5960581
commit
d2e5c32c83
|
@ -201,6 +201,11 @@ if(${PCSX2_TARGET_ARCHITECTURES} MATCHES "i386")
|
|||
endif()
|
||||
endif()
|
||||
|
||||
# Don't bother porting SuperVU
|
||||
if (NOT Linux)
|
||||
set(DISABLE_SVU TRUE)
|
||||
endif()
|
||||
|
||||
add_definitions(-D_ARCH_32=1 -D_M_X86=1 -D_M_X86_32=1)
|
||||
set(_ARCH_32 1)
|
||||
set(_M_X86 1)
|
||||
|
|
Loading…
Reference in New Issue