1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-03-24 02:10:06 +00:00
yuzu/externals/CMakeLists.txt

12 lines
289 B
CMake
Raw Normal View History

2016-12-11 22:59:28 +00:00
# Xbyak
if (ARCHITECTURE_x86_64)
add_library(xbyak INTERFACE)
target_include_directories(xbyak INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/xbyak/xbyak)
if (NOT MSVC)
target_compile_options(xbyak INTERFACE -fno-operator-names)
endif()
endif()
2017-02-13 20:03:55 +00:00
add_subdirectory(cryptopp)