Mark Moll wrote:
Is there any mechanism in CMake that would make it easier to create Linux binaries that run on more than one version of Linux / glibc? I am thinking of something along the lines of the support for OS X Universal Binaries in CMake or the functionality provided by apgcc in the autopackage tool (http://autopackage.org/apbuild-apgcc.php).
Why reinvent? This should work just as well with CMake as it does for autotools: export CC=apgcc export CXX=apg++ cmake .. -Bill _______________________________________________ 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
