Also, one more comment on your technique:

If you use get_filename_component in conjunction with paths that contain ".." or Windows-style component separators ("\"), you can always clean up the resulting string with the "ABSOLUTE" argument to get_filename_component. It will collapse any "/../" or "/./" bits of the path, and convert all the "\" to ?
"/" in the resulting variable.

It's just easier to read the values (as a person) if you don't have to think about any ".." resolution mentally when looking at cache entries and variable values. So.... as input to find_*, I would recommend using only ABSOLUTE paths as the hints and paths for such calls.


HTH,
David C.

--

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to