mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
260 B
CMake
9 lines
260 B
CMake
8 years ago
|
# 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()
|