On Fri, May 14, 2010 at 01:41:22PM -0500, Kevin Burge wrote: > I'd like to add a "setup" target that depends on "install" so I can just > do "make setup". > > Does anyone have a work around while we wait on > http://public.kitware.com/Bug/view.php?id=8438?
You could write a custom_target "my_install" that runs install by hand (cmake -P cmake_install.cmake). Then you can add_dependency on your custom target. I've considered doing this but never tried it. tyler _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
