Skip to content

Commit

Permalink
move to cmake 3.18 minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhendricks committed Dec 2, 2024
1 parent 439c834 commit a4d96ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
#########################################################

cmake_minimum_required( VERSION 3.5 )
cmake_minimum_required( VERSION 3.18 )

project(gumbo)

Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build examples/clean_text to ensure c++ code can
# be linked to newly built gumbo shared library.

cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.18)

# project(examples)

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
#########################################################

cmake_minimum_required( VERSION 3.0 )
cmake_minimum_required( VERSION 3.18 )

project(gumbo C)

Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build examples/clean_text to ensure c++ code can
# be linked to newly built gumbo shared library.

cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.18)


set( test_executable run_tests )
Expand Down

0 comments on commit a4d96ea

Please sign in to comment.