Skip to content

Commit

Permalink
c: Requiring atleast version 3.5 of cMake
Browse files Browse the repository at this point in the history
3.5 CMake will be deprecated soon, and the version should be set before the project in order to avoid a warning
  • Loading branch information
simonhyll authored Nov 13, 2024
1 parent af9e293 commit 65997bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT(gherkin C)
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.5)
project(gherkin C)
enable_testing()

# Install library & headers in your directory
Expand Down

0 comments on commit 65997bc

Please sign in to comment.