Browse Source

Bump libfmt to 10.0.0

pull/6114/head
Gleb Mazovetskiy 3 years ago
parent
commit
3e2a26a195
  1. 7
      .github/workflows/Android.yml
  2. 5
      3rdParty/libfmt/CMakeLists.txt

7
.github/workflows/Android.yml

@ -38,8 +38,8 @@ jobs:
uses: actions/cache@v3
with:
path: android-project/app/.cxx
key: ${{ github.workflow }}-v1-${{ github.sha }}
restore-keys: ${{ github.workflow }}-v1-
key: ${{ github.workflow }}-v2-${{ github.sha }}
restore-keys: ${{ github.workflow }}-v2-
- name: Build
working-directory: ${{github.workspace}}
@ -52,3 +52,6 @@ jobs:
with:
name: devilutionx-debug.apk
path: android-project/app/build/outputs/apk/debug/app-debug.apk
- name: Clean up artifacts
run: rm -rf android-project/app/build/outputs

5
3rdParty/libfmt/CMakeLists.txt vendored

@ -18,10 +18,9 @@ if(NXDK)
URL_HASH MD5=310c79c7a5cda3ad8f4e0d44d9fc1c57
)
else()
# master on 2022-03-12
FetchContent_Declare(libfmt
URL https://github.com/fmtlib/fmt/archive/7f882918eba6430a0509b5e8547de21611264c5c.tar.gz
URL_HASH MD5=03fd08aeabf9021c6bf19fbd84d5e62e
URL https://github.com/fmtlib/fmt/archive/refs/tags/10.0.0.tar.gz
URL_HASH MD5=fa629bc1178918b7af4b2ea6b6a271dc
)
endif()
FetchContent_MakeAvailableExcludeFromAll(libfmt)

Loading…
Cancel
Save