Re: [CMake] Control Object code destination?

2008-04-25 Thread KSpam
Eric, On Friday 25 April 2008 11:27:54 Eric Torstenson wrote: > So, I take it that this isn't possible? Is there a way to make a feature > request? What you are asking for is already possible, and very easy to accomplish in CMake. Consider the following directory structure: build/ linu

Re: [CMake] Control Object code destination?

2008-04-25 Thread Alexander Neundorf
On Friday 25 April 2008, Eric Torstenson wrote: > So, I take it that this isn't possible? Is there a way to make a feature > request? > > It seems to me to be a very important thing to do when developing > applications on multiple > platforms, which cmake is intended for. > > What would be nice is

Re: [CMake] Control Object code destination?

2008-04-25 Thread Mike Jackson
I don't get what you are trying to do. If you are compiling for 4 platforms (as am I) are you compiling from some sort of shared drive or network drive that all 4 platforms have concurrent access to? I don't understand how the object code from a windows build could be used on an OS X build?

Re: [CMake] Control Object code destination?

2008-04-25 Thread Eric Torstenson
So, I take it that this isn't possible? Is there a way to make a feature request? It seems to me to be a very important thing to do when developing applications on multiple platforms, which cmake is intended for. What would be nice is a variable that can be set which would allow the develope

Re: [CMake] How to dictate cmake best CFLAGS/...

2008-04-25 Thread Alexander Neundorf
On Friday 25 April 2008, Christoph Cullmann wrote: > Hi, > > we have a strict set of C/CXX/LDFLAGS we want to pass the toolchain per > default, how can that be accomplished best with cmake? Before, we just used > nmake with handcrafted files using some environment variables. > > I tried to call cma

Re: [CMake] 2.4.8 bug: CMAKE_OSX_SYSROOT is not handled consistently

2008-04-25 Thread Bryan O'Sullivan
Bill Hoffman wrote: > I will try to get this into 2.6.0 or 2.6.1. Thanks, Bill. Hats off as usual for being accommodating and quick. http://www.cmake.org/mailman/listinfo/cmake

[CMake] CTest: Problem checkout whole repository with automated testing (Continuous Build, etc. )

2008-04-25 Thread stefan page
Hello, I have a little problem with Continuous, Experimental and Nightly builds. For preliminaries, I've a directory structure that looks like this: /svn/trunk/modules/fooModule/fooModule.cmake /svn/trunk/modules/fooModule2/fooModule2.cmake /svn/trunk/applications/fooApplication/CMakeLists.txt /svn

Re: [CMake] CMake 2.4 (8) & WxWidgets + RichText Pt 2

2008-04-25 Thread Miguel A. Figueroa-Villanueva
On Fri, Apr 25, 2008 at 5:11 AM, Werner Smekal wrote: > Hi Miguel, > > > > The use of the windows or unix way is based solely on the following: > > > > IF(WIN32) > > SET(WIN32_STYLE_FIND 1) > > ENDIF(WIN32) > > IF(MINGW) > > SET(WIN32_STYLE_FIND 0) > > SET(UNIX_STYLE_FIND 1) > > ENDIF(MINGW) > >

[CMake] How to dictate cmake best CFLAGS/...

2008-04-25 Thread Christoph Cullmann
Hi, we have a strict set of C/CXX/LDFLAGS we want to pass the toolchain per default, how can that be accomplished best with cmake? Before, we just used nmake with handcrafted files using some environment variables. I tried to call cmake on windows like: "\"$WINPREFIX\\bin\\cmake\" \ -DCMAK

Re: [CMake] Help with libintl/configure tests

2008-04-25 Thread Tim Holy
On Friday 25 April 2008, Bill Hoffman wrote: > Bill Hoffman wrote: > > 1. call these directly in check_type_size: > > check_include_file(sys/types.h HAVE_SYS_TYPES_H) > > check_include_file(stdint.h HAVE_STDINT_H) > > check_include_file(stddef.h HAVE_STDDEF_H) > > > > 2. Update the documentation

Re: [CMake] [Patch] Re: cmake Debug builds with icc

2008-04-25 Thread Lucas Wilcox
* Bill Hoffman <[EMAIL PROTECTED]> [2008-04-24 21:55:30 -0400]: > $ cvs commit -m "ENH: support intel compiler on linux " Linux-Intel-C* > Linux-icpc.cmake > grep: Linux-icpc.cmake: No such file or directory > grep: Linux-icpc.cmake: No such file or directory > grep: Linux-icpc.cmake: No suc

Re: [CMake] Help with libintl/configure tests

2008-04-25 Thread Bill Hoffman
Bill Hoffman wrote: 1. call these directly in check_type_size: check_include_file(sys/types.h HAVE_SYS_TYPES_H) check_include_file(stdint.h HAVE_STDINT_H) check_include_file(stddef.h HAVE_STDDEF_H) 2. Update the documentation for check_type_size to tell people that they need those checks.

Re: [CMake] Help with libintl/configure tests

2008-04-25 Thread Bill Hoffman
Tim Holy wrote: Hi Bill, OK, I think I understand better. The whole problem can be illustrated with this simple CMakeLists.txt file: include(CheckTypeSize) include(CheckIncludeFile) # Block_begin check_include_file(sys/types.h HAVE_SYS_TYPES_H) check_include_file(stdint.h HAVE_STDINT_H) chec

Re: [CMake] CMake 2.4 (8) & WxWidgets + RichText Pt 2

2008-04-25 Thread Werner Smekal
Hi Miguel, The use of the windows or unix way is based solely on the following: IF(WIN32) SET(WIN32_STYLE_FIND 1) ENDIF(WIN32) IF(MINGW) SET(WIN32_STYLE_FIND 0) SET(UNIX_STYLE_FIND 1) ENDIF(MINGW) IF(UNIX) SET(UNIX_STYLE_FIND 1) ENDIF(UNIX) I just want to mention, that the above code is