summaryrefslogtreecommitdiff
path: root/src/common/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2016-12-12 01:23:08 -0800
committerGravatar Yuri Kunde Schlesner2016-12-14 20:06:08 -0800
commitf4e98ecf3f3c144e0db2bc866e3fe5aac39f6ec9 (patch)
tree9cb61994f928e64ca68d07150fc2cb5719fe6457 /src/common/CMakeLists.txt
parentExternals: Add Xbyak (diff)
downloadyuzu-f4e98ecf3f3c144e0db2bc866e3fe5aac39f6ec9.tar.gz
yuzu-f4e98ecf3f3c144e0db2bc866e3fe5aac39f6ec9.tar.xz
yuzu-f4e98ecf3f3c144e0db2bc866e3fe5aac39f6ec9.zip
VideoCore: Convert x64 shader JIT to use Xbyak for assembly
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r--src/common/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 74a271f08..e6c2ce335 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -71,9 +71,15 @@ if(ARCHITECTURE_x86_64)
71 set(HEADERS ${HEADERS} 71 set(HEADERS ${HEADERS}
72 x64/abi.h 72 x64/abi.h
73 x64/cpu_detect.h 73 x64/cpu_detect.h
74 x64/emitter.h) 74 x64/emitter.h
75 x64/xbyak_abi.h
76 x64/xbyak_util.h
77 )
75endif() 78endif()
76 79
77create_directory_groups(${SRCS} ${HEADERS}) 80create_directory_groups(${SRCS} ${HEADERS})
78 81
79add_library(common STATIC ${SRCS} ${HEADERS}) 82add_library(common STATIC ${SRCS} ${HEADERS})
83if (ARCHITECTURE_x86_64)
84 target_link_libraries(common xbyak)
85endif()