mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-28 06:53:58 +00:00
Fix clang/32-bit build
Rendering bits got restructured and the SSE_MATTERS paths were not updated to reflect that. A 32-bit build with clang subsequently complaints as the files in question are not compiled with -mmmx.
This commit is contained in:
parent
6ace482266
commit
e0c7bf7708
1 changed files with 3 additions and 4 deletions
|
@ -1458,10 +1458,9 @@ if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
||||||
# Need to enable intrinsics for these files.
|
# Need to enable intrinsics for these files.
|
||||||
if( SSE_MATTERS )
|
if( SSE_MATTERS )
|
||||||
set_source_files_properties(
|
set_source_files_properties(
|
||||||
gl/system/gl_swframebuffer.cpp
|
rendering/polyrenderer/poly_all.cpp
|
||||||
polyrenderer/poly_all.cpp
|
rendering/swrenderer/r_all.cpp
|
||||||
swrenderer/r_all.cpp
|
utility/x86.cpp
|
||||||
x86.cpp
|
|
||||||
PROPERTIES COMPILE_FLAGS "-msse2 -mmmx" )
|
PROPERTIES COMPILE_FLAGS "-msse2 -mmmx" )
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue