- Added new entries to `.pre-commit-config.yaml`, `cmake-format.yaml`, and `.github/dependabot.yml` to improve code quality checks and dependency updates. - Enhanced GitHub Actions workflows by adding new steps for testing and build retention. - Introduced support for the nlohmann_json library in CMake, allowing for conditional inclusion based on the `YAZE_ENABLE_JSON` option. - Updated CMake configurations to streamline SDL2 and gRPC integration, ensuring proper linking and target management. Benefits: - Improves code quality and consistency through automated checks and formatting. - Enhances dependency management and build reliability across platforms. - Provides flexibility for users to enable optional features, improving overall functionality.
27 lines
828 B
Plaintext
27 lines
828 B
Plaintext
# CPM Dependencies Lock File
|
|
# This file pins exact versions to ensure reproducible builds
|
|
# Update versions here when upgrading dependencies
|
|
|
|
# Core dependencies
|
|
set(SDL2_VERSION "2.30.0" CACHE STRING "SDL2 version")
|
|
set(YAML_CPP_VERSION "0.8.0" CACHE STRING "yaml-cpp version")
|
|
|
|
# gRPC and related
|
|
set(GRPC_VERSION "1.75.1" CACHE STRING "gRPC version")
|
|
set(PROTOBUF_VERSION "3.25.1" CACHE STRING "Protobuf version")
|
|
set(ABSEIL_VERSION "20240116.0" CACHE STRING "Abseil version")
|
|
|
|
# Testing
|
|
set(GTEST_VERSION "1.14.0" CACHE STRING "Google Test version")
|
|
set(BENCHMARK_VERSION "1.8.3" CACHE STRING "Google Benchmark version")
|
|
|
|
# CLI tools
|
|
set(FTXUI_VERSION "5.0.0" CACHE STRING "FTXUI version")
|
|
|
|
# ImGui
|
|
set(IMGUI_VERSION "1.90.4" CACHE STRING "Dear ImGui version")
|
|
|
|
# ASAR
|
|
set(ASAR_VERSION "main" CACHE STRING "ASAR version")
|
|
|