Fix warning in x64CPUDetect.cpp in generic build by not building it.

This commit is contained in:
comex
2014-09-22 21:02:21 -04:00
parent 9cdd842080
commit fb3d9c9d58
3 changed files with 19 additions and 10 deletions

View File

@ -45,12 +45,13 @@ if(_M_ARM)
else()
if(_M_X86) #X86
set(SRCS ${SRCS}
x64FPURoundMode.cpp)
x64FPURoundMode.cpp
x64CPUDetect.cpp)
else() # Generic
set(SRCS ${SRCS}
GenericFPURoundMode.cpp)
GenericFPURoundMode.cpp
GenericCPUDetect.cpp)
endif()
set(SRCS ${SRCS} x64CPUDetect.cpp)
endif()
if(WIN32)
set(SRCS ${SRCS} ExtendedTrace.cpp)