externals\CMakeLists.txt: add fmt before dynarmic

This commit is contained in:
SachinVin 2022-06-12 16:50:30 +05:30
parent 4a590d1fcb
commit 98d3b9c776

View file

@ -31,6 +31,10 @@ add_subdirectory(catch2)
# Crypto++ # Crypto++
add_subdirectory(cryptopp) add_subdirectory(cryptopp)
# fmt and Xbyak need to be added before dynarmic
# libfmt
add_subdirectory(fmt)
# Xbyak # Xbyak
if (ARCHITECTURE_x86_64) if (ARCHITECTURE_x86_64)
add_library(xbyak INTERFACE) add_library(xbyak INTERFACE)
@ -48,9 +52,6 @@ if (ARCHITECTURE_x86_64 OR ARCHITECTURE_ARM64)
add_subdirectory(dynarmic) add_subdirectory(dynarmic)
endif() endif()
# libfmt
add_subdirectory(fmt)
# getopt # getopt
if (MSVC) if (MSVC)
add_subdirectory(getopt) add_subdirectory(getopt)