mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
Merge pull request #329 from svdijk/master
CMake: Fix building on 32-bit Linux (Fedora 20).
This commit is contained in:
commit
9ed61b5cb6
1 changed files with 1 additions and 1 deletions
|
@ -111,6 +111,6 @@ if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
||||||
CHECK_CXX_COMPILER_FLAG( -msse DUMB_CAN_USE_SSE )
|
CHECK_CXX_COMPILER_FLAG( -msse DUMB_CAN_USE_SSE )
|
||||||
|
|
||||||
if( DUMB_CAN_USE_SSE )
|
if( DUMB_CAN_USE_SSE )
|
||||||
set_source_files_properties( src/it/filter.cpp PROPERTIES COMPILE_FLAGS -msse )
|
set_source_files_properties( src/helpers/resampler.c PROPERTIES COMPILE_FLAGS -msse )
|
||||||
endif( DUMB_CAN_USE_SSE )
|
endif( DUMB_CAN_USE_SSE )
|
||||||
endif( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
endif( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
||||||
|
|
Loading…
Reference in a new issue