what is CMAKE_INSTALL_PREFIX:PATH used for? I have a install_config.sh file which says CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH=/usr/lib/OGRE/cmake/ "
i assumed that it is the path where libs generated would be copied, but i found that the cmake_flags are called when cmake is invoked. I guess the cmake cache stores it and uses the path while "make install" is invoked.
can anyone please clarify?