Skip to content

Commit 52cd358

Browse files
authored
Merge pull request #139 from NuiCpp/feat/update-fmt
Updated fmt to 12.0.0
2 parents 69c27b7 + 4e3562d commit 52cd358

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Install clang
4444
run: |
45-
wget https://apt.llvm.org/llvm.sh
45+
curl -LO https://apt.llvm.org/llvm.sh
4646
chmod +x llvm.sh
4747
sudo ./llvm.sh ${{ matrix.clang_version }}
4848
sudo apt-get install -y clang-${{ matrix.clang_version }} lld-${{ matrix.clang_version }} libc++-${{ matrix.clang_version }}-dev libc++abi-${{ matrix.clang_version }}-dev

cmake/dependencies/fmt.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
option(NUI_FIND_FMT "Find fmt first before fetch content" ON)
22
option(NUI_FETCH_FMT "Try FetchContent for fmt" ON)
33
set(NUI_FMT_GIT_REPOSITORY "https://github.com/fmtlib/fmt.git" CACHE STRING "fmt git repository")
4-
set(NUI_FMT_GIT_TAG "77c0fc07d912ead06aaf9f2aaa5611a29139779e" CACHE STRING "fmt git tag")
4+
set(NUI_FMT_GIT_TAG "12.0.0" CACHE STRING "fmt git tag")
55

66
include("${CMAKE_CURRENT_LIST_DIR}/../fetcher.cmake")
77

0 commit comments

Comments
 (0)