I have a set of CMake commands that I want to place in a single file and have other projects use it. The commands in the file must affect the scope that references it, so the declared functions, include_directories, etc. must affect things in the scope that includes it.
I attempted to place these things in a file and use include(filename.cmake) to add the file. This appears to work until the file with the include() is in a different location. I need the include_directories to be relative to the location of filename.cmake, not the CMakeLists.txt that included it. Is there any way to accomplish this?
-- 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://public.kitware.com/mailman/listinfo/cmake