From ed476c997c1e90d37cd29d8c336ebc6179ab2e79 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 8 Sep 2014 22:24:23 -0500 Subject: [PATCH] Fix Generic build from AArch64 merge. I had missed this file and hadn't tested the branch on my new build system. --- Source/Core/Common/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index cfdf6cd14c..9c5f5488f7 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -46,6 +46,9 @@ else() if(_M_X86) #X86 set(SRCS ${SRCS} x64FPURoundMode.cpp) + else() # Generic + set(SRCS ${SRCS} + GenericFPURoundMode.cpp) endif() set(SRCS ${SRCS} x64CPUDetect.cpp) endif()