Make it so ARMv7 isn't a generic target.

Rearranges a bit of code so that ARM isn't a generic build anymore. Because it obviously isn't
This commit is contained in:
Ryan Houdek
2014-06-07 20:24:02 -05:00
parent b79482af44
commit 6e1d312091
4 changed files with 15 additions and 18 deletions

View File

@ -31,17 +31,16 @@ set(SRCS BreakPoints.cpp
if(_M_ARM_32) #ARMv7
set(SRCS ${SRCS}
ArmCPUDetect.cpp
ArmEmitter.cpp)
else()
if(_M_X86) #X86
set(SRCS ${SRCS}
x64FPURoundMode.cpp)
endif()
set(SRCS ${SRCS} x64CPUDetect.cpp)
endif()
if(_M_GENERIC) #Generic
set(SRCS ${SRCS}
GenericFPURoundMode.cpp)
ArmEmitter.cpp
GenericFPURoundMode.cpp)
elseif(_M_X86) #X86
set(SRCS ${SRCS}
x64CPUDetect.cpp
x64FPURoundMode.cpp)
else() #Generic
set(SRCS ${SRCS}
GenericFPURoundMode.cpp
x64CPUDetect.cpp)
endif()
if(WIN32)
set(SRCS ${SRCS} ExtendedTrace.cpp)