diff options
| author | 2016-12-12 01:23:08 -0800 | |
|---|---|---|
| committer | 2016-12-14 20:06:08 -0800 | |
| commit | f4e98ecf3f3c144e0db2bc866e3fe5aac39f6ec9 (patch) | |
| tree | 9cb61994f928e64ca68d07150fc2cb5719fe6457 /src/common/CMakeLists.txt | |
| parent | Externals: Add Xbyak (diff) | |
| download | yuzu-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.txt | 8 |
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 | ) | ||
| 75 | endif() | 78 | endif() |
| 76 | 79 | ||
| 77 | create_directory_groups(${SRCS} ${HEADERS}) | 80 | create_directory_groups(${SRCS} ${HEADERS}) |
| 78 | 81 | ||
| 79 | add_library(common STATIC ${SRCS} ${HEADERS}) | 82 | add_library(common STATIC ${SRCS} ${HEADERS}) |
| 83 | if (ARCHITECTURE_x86_64) | ||
| 84 | target_link_libraries(common xbyak) | ||
| 85 | endif() | ||