mirror of
https://github.com/Vita3K/Vita3K.git
synced 2026-07-11 01:34:23 +02:00
external: Update submodules
This commit is contained in:
@@ -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
|
||||
|
||||
Vendored
+12
-2
@@ -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")
|
||||
|
||||
|
||||
Vendored
+1
-1
Submodule external/boost updated: eb4d859896...02899142a8
+1
Submodule external/dynarmic added at 6759942b56
+1
Submodule external/fmt added at 342973b349
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user