Skip to content

Commit ee8b8d8

Browse files
committed
gitlib2 lower-case
1 parent 1205194 commit ee8b8d8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-on-unix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/cache/restore@v4
6161
with:
6262
path: vcpkg/binary-sources/**/*.zip
63-
key: vcpkg-cache-${{hashFiles('vcpkg.json', 'vcpkg/commit.txt')}}
63+
key: vcpkg-cache-linux-${{hashFiles('vcpkg.json', 'vcpkg/commit.txt')}}
6464

6565
- name: CMake - Configure
6666
run: cmake --preset=x64-linux .

.github/workflows/build-on-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/cache/restore@v4
6565
with:
6666
path: vcpkg\binary-sources\**\*.zip
67-
key: vcpkg-cache-${{hashFiles('vcpkg.json', 'vcpkg\commit.txt')}}
67+
key: vcpkg-cache-windows-${{hashFiles('vcpkg.json', 'vcpkg\commit.txt')}}
6868

6969
- name: CMake - Configure
7070
run: cmake --preset=x64-windows .

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include(FetchContent)
66

77
# disable adding CTest build targets like "NightlyStart" (before ctest include)
88
set_property(GLOBAL PROPERTY CTEST_TARGETS_ADDED 1)
9-
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake/CTestCustom.cmake.in" "CTestCustom.cmake" @ONLY)
9+
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/CMake/CTestCustom.cmake.in" "CTestCustom.cmake" @ONLY)
1010
include(CTest)
1111

1212
# Set the C++ standard to C++23
@@ -35,7 +35,7 @@ endif()
3535

3636
find_package(ICU REQUIRED COMPONENTS i18n uc data)
3737
find_package(Microsoft.GSL CONFIG REQUIRED)
38-
find_package(LibGit2 CONFIG REQUIRED)
38+
find_package(libgit2 CONFIG REQUIRED)
3939
find_package(OpenSSL REQUIRED)
4040

4141
add_library(hk_objects OBJECT

0 commit comments

Comments
 (0)