Skip to content

Commit

Permalink
Merge branch 'cmake-min-311' into 'master'
Browse files Browse the repository at this point in the history
increase cmake min version to 3.11

See merge request integer/scip!3573
  • Loading branch information
svigerske committed Nov 7, 2024
2 parents e913cfd + 4863665 commit a39a343
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 19 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ Build system

### Cmake

- increased minimal required cmake version to 3.11

Fixed bugs
----------

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

# option() honors normal variables.
if(POLICY CMP0077)
Expand Down
2 changes: 1 addition & 1 deletion applications/Coloring/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Coloring)

Expand Down
2 changes: 1 addition & 1 deletion applications/CycleClustering/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(CycleClustering)

Expand Down
2 changes: 1 addition & 1 deletion applications/MinIISC/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(MinIISC)

Expand Down
2 changes: 1 addition & 1 deletion applications/Ringpacking/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Rinpacking)

Expand Down
2 changes: 1 addition & 1 deletion applications/Scheduler/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Scheduler)

Expand Down
2 changes: 1 addition & 1 deletion doc/xternal.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
* Alex is now ready to write his very first example, he creates a new folder `MinEx` under `examples` and puts two files in there:
* `CMakeLists.txt`:
* ```
* cmake_minimum_required(VERSION 3.3)
* cmake_minimum_required(VERSION 3.11)
*
* project(minex)
* find_package(SCIP REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion examples/Binpacking/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Binpacking)

Expand Down
2 changes: 1 addition & 1 deletion examples/CallableLibrary/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(CallableLibrary)
include(CTest)
Expand Down
2 changes: 1 addition & 1 deletion examples/Eventhdlr/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Eventhdlr)

Expand Down
2 changes: 1 addition & 1 deletion examples/GMI/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(GMI)

Expand Down
2 changes: 1 addition & 1 deletion examples/LOP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(LOP)
include(CTest)
Expand Down
2 changes: 1 addition & 1 deletion examples/MIPSolver/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(MIPSolver)

Expand Down
2 changes: 1 addition & 1 deletion examples/Queens/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Queens)

Expand Down
2 changes: 1 addition & 1 deletion examples/Relaxator/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Relaxator)

Expand Down
2 changes: 1 addition & 1 deletion examples/SCFLP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(SCFLP)

Expand Down
2 changes: 1 addition & 1 deletion examples/Sudoku/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(Sudoku)

Expand Down
2 changes: 1 addition & 1 deletion examples/TSP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(TSP)

Expand Down
2 changes: 1 addition & 1 deletion examples/VRP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.11)

project(VRP)

Expand Down

0 comments on commit a39a343

Please sign in to comment.