On Friday 11 August 2006 23:10, you wrote: > Am Freitag, 11. August 2006 23:09, schrieb Alexander Neundorf: > > On Friday 11 August 2006 22:55, Friedrich W. H. Kossebau wrote: > > > From what I see cmake 2.4.* itself has some broken inner state here. > > > Perhaps someone could attach a a debugger to it? ;) > > > > It might have to do with some escaping, so that some variable is not > > escaped correctly and gets interpreted as cmake command or something like > > this. > > Is there a command to dump all current variables, so one could check them?
The man page is your friend :-) GET_CMAKE_PROPERTY Get a property of the CMake instance. GET_CMAKE_PROPERTY(VAR property) Get a property from the CMake instance. The value of the property is stored in the variable VAR. If the property is not found, CMake will report an error. Some supported properties include: VARIABLES, CACHE_VARIABLES, COMMANDS, and MACROS. So the following should get you all variables: get_cmake_property(all_vars VARIABLES) Bye Alex -- Work: alexander.neundorf AT jenoptik.com - http://www.jenoptik-los.de Home: neundorf AT kde.org - http://www.kde.org alex AT neundorf.net - http://www.neundorf.net _______________________________________________ Kde-buildsystem mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-buildsystem
