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
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
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?
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
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
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
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
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)
> >
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
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
* 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
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.
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
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
14 matches
Mail list logo