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
In the file Documentation/doc/CMakeLists.txt we see (like in other CMakeLists.txt files):
cmake_minimum_required(VERSION 3.12...3.29)
but now also the line:
cmake_minimum_required(VERSION 3.18..3.29) # for list(SORT ... COMPARE NATURAL)
has been added.
Either:
in the file Documentation/doc/CMakeLists.txt the first cmake_minimum_required line should be replaced by the second cmake_minimum_required line and the second cmake_minimum_required line should be removed
or
everywhere only the second cmake_minimum_required line should be used.
or
use second cmake_minimum_required line only in the top level CMakeLists.txt and remove all other occurrences of cmake_minimum_required (over 300 files).
The text was updated successfully, but these errors were encountered:
In the file
Documentation/doc/CMakeLists.txt
we see (like in otherCMakeLists.txt
files):but now also the line:
has been added.
Either:
Documentation/doc/CMakeLists.txt
the firstcmake_minimum_required
line should be replaced by the secondcmake_minimum_required
line and the secondcmake_minimum_required
line should be removedor
cmake_minimum_required
line should be used.or
cmake_minimum_required
line only in the top levelCMakeLists.txt
and remove all other occurrences ofcmake_minimum_required
(over 300 files).The text was updated successfully, but these errors were encountered: