mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Fix warning in x64CPUDetect.cpp in generic build by not building it.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user