diff options
author | Merry <git@mary.rs> | 2021-08-15 17:47:52 +0200 |
---|---|---|
committer | merry <MerryMage@users.noreply.github.com> | 2021-08-15 20:26:38 +0200 |
commit | 1770503185919d2bfa5940464a7759f2cf837c26 (patch) | |
tree | 6d9a866568fe42d7aca451f0e0e23e87adbe3844 /externals | |
parent | Merge pull request #6861 from yzct12345/const-mempy-is-all-the-speed (diff) | |
download | yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar.gz yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar.bz2 yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar.lz yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar.xz yuzu-1770503185919d2bfa5940464a7759f2cf837c26.tar.zst yuzu-1770503185919d2bfa5940464a7759f2cf837c26.zip |
Diffstat (limited to 'externals')
-rw-r--r-- | externals/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 4b8d35548..e5f22889f 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -7,7 +7,9 @@ include(DownloadExternals) # xbyak if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) add_library(xbyak INTERFACE) - target_include_directories(xbyak SYSTEM INTERFACE ./xbyak/xbyak) + file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include) + file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/xbyak/xbyak DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include) + target_include_directories(xbyak SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include) target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES) endif() |