GEOS-DEV / thirdPartyLibs

Repository to build the GEOSX third party libraries
3 stars 12 forks source link

Fix wrong setting of CMAKE_VERBOSE_MAKEFILE variable. #240

Closed Algiane closed 1 year ago

Algiane commented 1 year ago

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"
Algiane commented 1 year ago

I close this PR as I have just seen that the PR#228 fixes the same issue.