Updated scm

This commit is contained in:
Xieamoe 2024-02-20 12:52:36 -08:00
parent 92a21e57e7
commit f7363c91cf
No known key found for this signature in database
GPG key ID: 5B82D290CCD94C6D
3 changed files with 6 additions and 6 deletions

View file

@ -25,7 +25,7 @@ if( ${GUIX} )
include(tests/Catch.cmake)
target_link_libraries(tests PRIVATE cpr marisa rdricpp Catch2Main Catch2)
else()
target_link_libraries(tests PRIVATE cpr::cpr fmt::fmt nlohmann_json::nlohmann_json marisa rdricpp Catch2::Catch2WithMain)
target_link_libraries(tests PRIVATE cpr::cpr nlohmann_json::nlohmann_json marisa rdricpp Catch2::Catch2WithMain)
endif()

View file

@ -136,8 +136,8 @@
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/xieamoe/gd-tools-plus.git")
(commit "9b66d3caf8")))
(sha256 (base32 "135flpfkp2sjgah92546vpznxz712c5prvbdj93637y9pyrw9rci"))))
(commit "92a21e57e7")))
(sha256 (base32 "0zwb20s8kzdnzypgrx3cl0z4cicl20icb6pmmxbq8vh5dxpf71fd"))))
(build-system cmake-build-system)
(arguments
@ -178,5 +178,5 @@
(license
(list license:gpl3+
license:zlib))))
gd-tools
gd-tools

View file

@ -4,7 +4,7 @@ add_executable(tests tests_main.cpp kana_conv.h util.h)
target_compile_features(tests PRIVATE cxx_std_23)
# Should be linked to the rdricpp library, as well as the Catch2 testing library
#target_link_libraries(tests PRIVATE cpr::cpr fmt::fmt nlohmann_json::nlohmann_json marisa rdricpp Catch2::Catch2WithMain)
#target_link_libraries(tests PRIVATE cpr::cpr nlohmann_json::nlohmann_json marisa rdricpp Catch2::Catch2WithMain)
target_link_libraries(tests PRIVATE cpr::cpr marisa rdricpp Catch2Main)