Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Ninja (Cmake build generator)
uses: seanmiddleditch/gha-setup-ninja@master
- name: Check cmake
run: cmake --version

- name: Check Ninja
run: ninja --version

- name: Configure
run: cmake -S . -B build -G Ninja

- name: Setup MSVC toolchain on Windows
if: matrix.os == 'windows-latest'
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
cmake_minimum_required(VERSION 3.27)

# This is the current version of this C++ project
project(c2pa-c VERSION 0.26.6)
project(c2pa-c VERSION 0.26.7)

# Set the version of the c2pa_rs library used
set(C2PA_VERSION "0.90.10")
set(C2PA_VERSION "0.90.12")

set(CMAKE_POLICY_DEFAULT_CMP0135 NEW)
set(CMAKE_C_STANDARD 17)
Expand Down
Loading