Skip to content

Commit

Permalink
chore: Remove fmt dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirius902 committed Jan 17, 2025
1 parent 6eabeae commit b7ce436
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: johnwason/vcpkg-action@v6
id: vcpkg
with:
pkgs: pkgconf fmt ztd-text wil tomlplusplus sol2 lua rapidjson
pkgs: pkgconf ztd-text wil tomlplusplus sol2 lua rapidjson
triplet: x64-windows-static
token: ${{ github.token }}
github-binarycache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: johnwason/vcpkg-action@v6
id: vcpkg
with:
pkgs: pkgconf fmt ztd-text wil tomlplusplus sol2 lua rapidjson
pkgs: pkgconf ztd-text wil tomlplusplus sol2 lua rapidjson
triplet: x64-windows-static
token: ${{ github.token }}
github-binarycache: true
Expand Down
3 changes: 0 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

find_package(fmt CONFIG REQUIRED)

find_package(ztd.text CONFIG REQUIRED)
find_package(ztd.cuneicode CONFIG REQUIRED)

Expand Down Expand Up @@ -94,7 +92,6 @@ target_include_directories(DBGHELP PRIVATE
${CMAKE_CURRENT_BINARY_DIR}
)
target_link_libraries(DBGHELP PRIVATE
fmt::fmt
ztd.text
WIL::WIL
sol2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ hooking as DINPUT8 is also supported. To hook as DINPUT8, rename the `DBGHELP.dl

```powershell
$env:VCPKG_DEFAULT_TRIPLET="x64-windows-static"
vcpkg install pkgconf fmt ztd-text wil tomlplusplus sol2 lua rapidjson
vcpkg install pkgconf ztd-text wil tomlplusplus sol2 lua rapidjson
```

- Inside the repository run `cmake --preset=default` to configure the project.
Expand Down

0 comments on commit b7ce436

Please sign in to comment.