mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 23:32:02 +00:00
- fixed: HQnX must be excluded on Win64 builds.
This commit is contained in:
parent
3fbcfa7551
commit
cdd0aef1ce
1 changed files with 2 additions and 2 deletions
|
@ -610,7 +610,7 @@ if( WIN32 )
|
||||||
endif( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" )
|
endif( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" )
|
||||||
|
|
||||||
# [BB] Maxim Stepin's hq2x/3x/4x pixel upsampling algorithm as library. Currently only used with VC++.
|
# [BB] Maxim Stepin's hq2x/3x/4x pixel upsampling algorithm as library. Currently only used with VC++.
|
||||||
if( MSVC )
|
if( MSVC AND NOT X64 )
|
||||||
set( SYSTEM_SOURCES
|
set( SYSTEM_SOURCES
|
||||||
${SYSTEM_SOURCES}
|
${SYSTEM_SOURCES}
|
||||||
gl/hqnx/Image.cpp
|
gl/hqnx/Image.cpp
|
||||||
|
@ -618,7 +618,7 @@ if( WIN32 )
|
||||||
gl/hqnx/hq3x.cpp
|
gl/hqnx/hq3x.cpp
|
||||||
gl/hqnx/hq4x.cpp
|
gl/hqnx/hq4x.cpp
|
||||||
)
|
)
|
||||||
endif( MSVC )
|
endif( MSVC AND NOT X64)
|
||||||
else( WIN32 )
|
else( WIN32 )
|
||||||
set( SYSTEM_SOURCES_DIR sdl )
|
set( SYSTEM_SOURCES_DIR sdl )
|
||||||
set( SYSTEM_SOURCES ${PLAT_SDL_SOURCES} )
|
set( SYSTEM_SOURCES ${PLAT_SDL_SOURCES} )
|
||||||
|
|
Loading…
Reference in a new issue