mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
src: fix i386 build
SSE_MATTERS formally went away in 466ed4e8f2
, leaving behind this dead
branch that still needed to happen for 32-bit targets. It was further
broken later with some path restructuring.
This commit is contained in:
parent
6ee89275ca
commit
70ea671f01
1 changed files with 6 additions and 8 deletions
|
@ -1386,14 +1386,12 @@ if( CMAKE_COMPILER_IS_GNUCXX )
|
|||
endif()
|
||||
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
||||
# Need to enable intrinsics for these files.
|
||||
if( SSE_MATTERS )
|
||||
set_property( SOURCE
|
||||
common/rendering/polyrenderer/poly_all.cpp
|
||||
rendering/swrenderer/r_all.cpp
|
||||
utility/palette.cpp
|
||||
utility/x86.cpp
|
||||
APPEND_STRING PROPERTY COMPILE_FLAGS " -msse2 -mmmx" )
|
||||
endif()
|
||||
set_property( SOURCE
|
||||
common/rendering/polyrenderer/poly_all.cpp
|
||||
common/utility/palette.cpp
|
||||
common/utility/x86.cpp
|
||||
rendering/swrenderer/r_all.cpp
|
||||
APPEND_STRING PROPERTY COMPILE_FLAGS " ${SSE2_ENABLE}" )
|
||||
endif()
|
||||
|
||||
if( APPLE )
|
||||
|
|
Loading…
Reference in a new issue