RE: [CMake] CMAKE_CXX_COMPILE_OBJECT for compiler with no -o support

2007-02-14 Thread Trevor Kellaway
Werner, > would be cool if you could add some information here: > > http://www.cmake.org/Wiki/CMake_Useful_Variables I've updated the Wiki with the raw list. Haven't had time to try them, but most are self explanatory. ___ CMake mailing list CMake@cma

Re: [CMake] CMAKE_CXX_COMPILE_OBJECT for compiler with no -o support

2007-02-14 Thread Werner Smekal
Hi, would be cool if you could add some information here: http://www.cmake.org/Wiki/CMake_Useful_Variables Regards, Werner Trevor Kellaway wrote: Alex, Three ideas: - do as you suggest, use a wrapper - try whether you can get it working with something like ${CMAKE_CURRENT_BINARY_DIR}/CMake

RE: [CMake] CMAKE_CXX_COMPILE_OBJECT for compiler with no -o support

2007-02-14 Thread Trevor Kellaway
Alex, > Three ideas: > - do as you suggest, use a wrapper > - try whether you can get it working with something like > ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${_target}.dir > - check the cmake source for "OBJECT" and if there is nothing > like "OBJECT_DIR write a patch and submit it >From look

Re: [CMake] CMAKE_CXX_COMPILE_OBJECT for compiler with no -o support

2007-02-13 Thread Alexander Neundorf
Von: "Trevor Kellaway" <[EMAIL PROTECTED]> > Hi, > > I'm trying to modify CMAKE to use a cross platform compiler (TI DSP) and > I'm using the "useecos.cmake" as a template. > > By default CMAKE expects the built object to be a subdirectory of the > form: > > try\CMakeFiles\Try.dir\ > >