The CMAKE_VERBOSE_MAKEFILE variable was setted to BOOL;OFF; due to an erroneous call of the SET function of CMake (for non cache variable, the type of the variable is not expected).
It was leading to the following warning when compiling some of the TPLs (for example adiak with VERBOSE=1 make command):
CMake Warning:
Ignoring extra path from command line:
"/Users/froehly/GEOS-FORK/thirdPartyLibs-AlgianeFork/build-appleM1-clang-debug/adiak/src/adiak-build/OFF"
The CMAKE_VERBOSE_MAKEFILE variable was setted to
BOOL;OFF;
due to an erroneous call of the SET function of CMake (for non cache variable, the type of the variable is not expected).It was leading to the following warning when compiling some of the TPLs (for example adiak with
VERBOSE=1 make
command):