Updated to use the latest libgit2 1.9.0 and GCC14.

This commit is contained in:
Zed A. Shaw 2025-04-16 23:44:22 -04:00
parent 62785d463c
commit 2d81f900be
10 changed files with 29 additions and 35 deletions

View file

@ -5,7 +5,7 @@ cmake = import('cmake')
opts = cmake.subproject_options()
opts.add_cmake_defines({
'USE_ICONV': false,
'USE_SSH': false,
#'USE_SSH': false,
'USE_NTLMCLIENT': false,
'BUILD_SHARED_LIBS': true,
'BUILD_TESTS': false,
@ -14,7 +14,7 @@ libgit2_proj = cmake.subproject('libgit2', options: opts)
libgit2package = libgit2_proj.dependency('libgit2package')
efsw = dependency('efsw')
fmt = dependency('fmt')
fmt = subproject('fmt').get_variable('fmt_dep')
catch2 = dependency('catch2-with-main')
sfml = dependency('sfml')
json = dependency('nlohmann_json')