When running the cmake process, the following warning occurs several time :
CMake Warning (dev) at CMakeLists.txt:843 (install):
Policy CMP0177 is not set: install() DESTINATION paths are normalized. Run
"cmake --help-policy CMP0177" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
This warning is for project developers. Use -Wno-dev to suppress it.
This is due to set(DATADIR .) on line :
From cmake 3.31, the destination path for the
install() command must be normalized.
I'd suggest the attached patch (I can create a PR if needed). Not a big deal, but we all like clean logs 😉 .
policy0177.patch
When running the cmake process, the following warning occurs several time :
This is due to
set(DATADIR .)on line :ART/CMakeLists.txt
Line 219 in 87970be
From cmake 3.31, the destination path for the
install()command must be normalized.I'd suggest the attached patch (I can create a PR if needed). Not a big deal, but we all like clean logs 😉 .
policy0177.patch