Thank you Slywester.
I found the directory and file where the blitz, curl, and hdf5 versions are set. On the system I am working on it is in /pkg/fmwk/<framework>/dev/fmwk-config.cmake.</framework> There happens to be numerous frameworks in /pkg/fmwk/ and each one sets the blitz directory to blitz0.10. The blitz0.10i (for intel) seems to be just a holding place for the intel code and the workaround seems to be moving blitz0.10 (currently the gnu version) into blitz0.10g (for gnu) and keeping it in the system just as...
I'm trying to compile a pretty large project using cmake. I'm compiling on an intel compiler on linux. In /pkg we have 2 version of blitz0.10 (gnu) and blitz0.10i (intel). In the cmake file there is a variable called ${BLITZ_LIBRARY}. It is directing the compiler to look for the /pgk/blitz0.10/include/gnu/bzonfig.h * rather than in /pgk/blitz0.10/include/intel/bzconfig.h*. Any thoughts on how to set that variable so it points to the right directory. I tried hard coding it the CMakeLists.txt file,...