-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Description
What version of OR-Tools and what language are you using?
Version: v9.0
Language: C++
Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi)
Gurobi
What operating system (Linux, Windows, ...) and version?
Linux (Debian 10)
What did you do?
Steps to reproduce the behavior:
- Install CMake 3.14 as this is set as minimum in the CMakeLists.txt
git clone https://github.com/google/or-tools -b v9.0cd or-toolscmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_DEPS=ON -DUSE_SCIP=OFF
What did you expect to see
a running build
What did you see instead?
#6 188.1 CMake Error at cmake/dependencies/CMakeLists.txt:55 (list):
#6 188.1 list does not recognize sub-command POP_BACK
Many of the CMake files use list(POP_BACK ...) which does not exist in CMake 3.14.
The minimum version has to be set to 3.15
Reactions are currently unavailable