external: Update submodules

This commit is contained in:
sunho
2021-04-29 12:10:50 +02:00
committed by Nicolas Jallamion
parent 8060a55978
commit 48b344e1b6
6 changed files with 22 additions and 4 deletions
+6
View File
@@ -84,3 +84,9 @@
[submodule "external/xxHash"]
path = external/xxHash
url = https://github.com/Cyan4973/xxHash
[submodule "external/dynarmic"]
path = external/dynarmic
url=https://github.com/Vita3K/dynarmic.git
[submodule "external/fmt"]
path = external/fmt
url = https://github.com/fmtlib/fmt.git
+12 -2
View File
@@ -44,8 +44,13 @@ target_include_directories(printf INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/printf"
add_subdirectory(elfio)
option(SPDLOG_WCHAR_FILENAMES "Support wchar filenames" ON)
option(SPDLOG_NO_THREAD_ID "prevent spdlog from querying the thread id on each log call if thread id is not needed" ON)
add_subdirectory(fmt)
add_library(fmt::fmt ALIAS fmt)
set (fmt_DIR fmt)
set(SPDLOG_WCHAR_FILENAMES ON CACHE BOOL "")
set(SPDLOG_NO_THREAD_ID ON CACHE BOOL "")
set(SPDLOG_FMT_EXTERNAL ON CACHE BOOL "")
add_subdirectory(spdlog EXCLUDE_FROM_ALL)
add_library(stb INTERFACE)
@@ -148,6 +153,11 @@ else()
target_include_directories(unicorn INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/unicorn/include")
endif()
set(DYNARMIC_TESTS OFF CACHE BOOL "")
set(DYNARMIC_NO_BUNDLED_FMT ON CACHE BOOL "")
set(DYNARMIC_USE_ARMV7 ON CACHE BOOL "")
add_subdirectory(dynarmic)
add_library(vita-toolchain INTERFACE)
target_include_directories(vita-toolchain INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/vita-toolchain/src")
+1 -1
Vendored Submodule
+1
Submodule external/dynarmic added at 6759942b56
Vendored Submodule
+1
Submodule external/fmt added at 342973b349
+1 -1
View File
@@ -47,4 +47,4 @@ using ${NAMESPACE}\;
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/include/util/optional.h" ${INCLUDE_COMPLETE})
target_include_directories(util PUBLIC include ${CMAKE_CURRENT_BINARY_DIR}/include)
target_link_libraries(util PUBLIC ${Boost_LIBRARIES} spdlog::spdlog)
target_link_libraries(util PUBLIC ${Boost_LIBRARIES} fmt spdlog)