mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 08:49:18 +01:00
Swap out boostorg/boost for skyline-emu/boost
This commit is contained in:
parent
b45437b78b
commit
69ba4f8abb
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -36,7 +36,7 @@
|
||||
url = https://github.com/xiph/opus
|
||||
[submodule "Boost"]
|
||||
path = app/libraries/boost
|
||||
url = https://github.com/boostorg/boost.git
|
||||
url = https://github.com/skyline-emu/boost.git
|
||||
ignore = all
|
||||
[submodule "LLVM"]
|
||||
path = app/libraries/llvm
|
||||
|
@ -38,6 +38,11 @@ set(LIBCXXABI_LIBCXX_INCLUDES "${LIBCXX_TARGET_INCLUDE_DIRECTORY}" CACHE STRING
|
||||
add_subdirectory("libraries/llvm/libcxxabi")
|
||||
link_libraries(cxxabi_static)
|
||||
|
||||
# Skyline's Boost fork
|
||||
set(Boost_USE_STATIC_LIBS ON)
|
||||
set(Boost_USE_MULTITHREADED ON)
|
||||
add_subdirectory("libraries/boost")
|
||||
|
||||
# {fmt}
|
||||
add_subdirectory("libraries/fmt")
|
||||
|
||||
@ -94,11 +99,6 @@ include_directories(SYSTEM "libraries/perfetto/sdk")
|
||||
add_library(perfetto STATIC libraries/perfetto/sdk/perfetto.cc)
|
||||
target_compile_options(perfetto PRIVATE -Wno-everything)
|
||||
|
||||
# Boost
|
||||
set(Boost_USE_STATIC_LIBS ON)
|
||||
set(Boost_USE_MULTITHREADED ON)
|
||||
add_subdirectory("libraries/boost")
|
||||
|
||||
# C++ Range v3
|
||||
add_subdirectory("libraries/range")
|
||||
|
||||
|
@ -64,7 +64,7 @@ android {
|
||||
disable 'IconLocation'
|
||||
}
|
||||
|
||||
/* NDK */
|
||||
/* NDK and CMake */
|
||||
ndkVersion '25.0.8221429'
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit e32407f2b4cac7f0d739f10821d7f7e0c81e8436
|
||||
Subproject commit 06d52af216340ed46b865d01c4f7c0d7a8cc5918
|
Loading…
Reference in New Issue
Block a user