Hello, I want to migrate from a build system that has its own lists of source files that must be maintained for the time being. I have scripts to translate those list files into CMakeLists.txt files but I don't know of a good way to integrate those into a CMake generated build system and keep the generated CMakeLists.txt files up to date with the files they were generated from.
My current solution is to use a Makefile to check to see if the CMakeLists.txt files need to be updated as part of the build. This is a bit clumsy. The issue seems similar to the problem of using file globbing in CMakeLIsts.txt files and as far as I know, the answer there is "don't do that". Still I thought I'd try my luck. Any suggestions?
-- 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
