mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
a06220682c
More info at http://fmtlib.net/ This commit was based on @jroweboy's work on his spdlog branch, but with modifications.
13 lines
311 B
CMake
13 lines
311 B
CMake
# 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()
|
|
|
|
add_subdirectory(cryptopp)
|
|
|
|
add_subdirectory(fmt)
|