2016-12-12 04:29:28 +05:30
|
|
|
# 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-14 01:33:55 +05:30
|
|
|
|
|
|
|
add_subdirectory(cryptopp)
|
|
|
|
|
2017-05-28 02:52:35 +05:30
|
|
|
add_subdirectory(fmt)
|