mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-01-23 17:16:47 +01:00
9 lines
260 B
Text
9 lines
260 B
Text
|
# 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()
|