Is there a way to programmatically check whether all (or some) CMake targets are installed?
I want to be able to check that all defined targets of a particular project (at least libraries or executable) are installed. I can recursively retrieve all targets using https://cmake.org/cmake/help/v3.9/prop_dir/BUILDSYSTEM_TARGETS.html directory property. But then I want to know if a target has been installed or not by some install(...) rules. Is it possible? -- Eric
-- 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: https://cmake.org/mailman/listinfo/cmake
