[CMake] Invoking ant (clean)

2008-01-28 Thread Chen Levy
Hello, List. I am setting up a build system based on CMake, that replaces the current build system. However some of the sources are already build with Apache ant, that works perfectly fine with the existing build.xml files. I wish to invoke ant from the generated Makefiles. I can do that with:

Re: [CMake] override CMAKE_COMMAND

2008-01-13 Thread Chen Levy
Solved. (Thanks to Bill Hoffman and Hans Rijneke) I have used my current installation as a bootstrap to compile the sources. I have used ccmake to change the CMAKE_CXX_FLGAS to be: -I/path/to/gcc/lib '-R$$ORIGIN/../lib' (see http://docs.sun.com/app/docs/doc/817-1984/6mhm7pl37?a=view) and then lin

[CMake] test

2007-11-18 Thread Chen Levy
Please ignore this message. -- Cheers, Chen. ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] expand INCLUDE(...) in derective CMakeLists.txt files a'la gcc -e

2007-11-18 Thread Chen Levy
Hello, List. I have a set of CMakeLists.txt file that uses the INCLUDE(...) statement to tie them together. I want to see the intermediary CMakeLists file that is the expansion of all the INCLUDE(...)s into a single file, just like the gcc do with the -e switch. Is there a way to do that? Googl