You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My environment is Clang 12.0.0.0, CMake 3.18.3, macOS 10.15.7.
I found out cmake -DORTOOLS_ROOT:STRING="{path-to-ortools-root-dir}" ..
is not working in my case. But cmake -DORTOOLS_ROOT=<path-to-ortools-root-dir> ..
is working. Also, I set cmake_minimum_required(VERSION 3.12)
in CMakeLists.txt to avoid the CMAKE warning for CMP0074. Maybe it helps someone else.
The text was updated successfully, but these errors were encountered:
My environment is Clang 12.0.0.0, CMake 3.18.3, macOS 10.15.7.
I found out
cmake -DORTOOLS_ROOT:STRING="{path-to-ortools-root-dir}" ..
is not working in my case. But
cmake -DORTOOLS_ROOT=<path-to-ortools-root-dir> ..
is working. Also, I set
cmake_minimum_required(VERSION 3.12)
in CMakeLists.txt to avoid the CMAKE warning for CMP0074. Maybe it helps someone else.
The text was updated successfully, but these errors were encountered: