ArthurSonzogni / nlohmann_json_cmake_fetchcontent

A lightweight Release-tracking repository for nlohmann/json. Suitable for CMake fetchcontent. Automatically upgraded every weeks.
MIT License
80 stars 26 forks source link

Scheduled update action seems to have shut off #17

Closed Krzmbrzl closed 11 months ago

Krzmbrzl commented 11 months ago

Afaict the last time the action ran was 6 months ago. Given that it is supposed to run weekly, that probably means that the action has been suspended.

ArthurSonzogni commented 11 months ago

This repository is not more useful. Indeed, since v3.11.3, you can use:

include(FetchContent)

FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz)
FetchContent_MakeAvailable(json)

target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)