On 2007-08-18 00:11+0200 Stefan Kögl wrote:
How to prefer a header e.g "/usr/local/include/foo-0.25/foo/*.h" over "/usr/include/foo/*.h" ?
Use the cmake command-line option -DCMAKE_INSTALL_PREFIX to install your stable library wherever you want and your development library wherever you want. If you have a supplementary CMake project that wants to use either the stable or development version of a library, use the environment variables CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH. For more information consult http://www.cmake.org/Wiki/CMake_Useful_Variables or the full documentation at http://www.cmake.org/HTML/Documentation.html. Alan __________________________ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); PLplot scientific plotting software package (plplot.org); the libLASi project (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the Linux Brochure Project (lbproject.sf.net). __________________________ Linux-powered Science __________________________ _______________________________________________ CMake mailing list [email protected] http://www.cmake.org/mailman/listinfo/cmake
