- fixed: HQnX must be excluded on Win64 builds.

This commit is contained in:
Christoph Oelckers 2013-11-30 10:20:24 +01:00
parent 3fbcfa7551
commit cdd0aef1ce
1 changed files with 2 additions and 2 deletions

View File

@ -610,7 +610,7 @@ if( WIN32 )
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++.
if( MSVC )
if( MSVC AND NOT X64 )
set( SYSTEM_SOURCES
${SYSTEM_SOURCES}
gl/hqnx/Image.cpp
@ -618,7 +618,7 @@ if( WIN32 )
gl/hqnx/hq3x.cpp
gl/hqnx/hq4x.cpp
)
endif( MSVC )
endif( MSVC AND NOT X64)
else( WIN32 )
set( SYSTEM_SOURCES_DIR sdl )
set( SYSTEM_SOURCES ${PLAT_SDL_SOURCES} )