[CMake] CMake podcast

2011-12-31 Thread Matthew McCormick
A new podcast on CMake has been posted featuring Bill Hoffman and David Cole: http://inscight.org/2011/12/31/episode-21-cmake/ Enjoy! Matt -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

[CMake] PkgConfig XPREFIX_CFLAGS and semicolon separated list

2009-02-08 Thread Matthew McCormick
Hi, I am using the FindPkgConfig.cmake module. One of the results it produces is XPREFIX_CFLAGS . This variable is a cmake semicolon separated list. However, I cannot figure how I am supposed use this variable without expanding the list. It seems that this should be a space separated single

Re: [CMake] Finder repository

2008-05-26 Thread Matthew McCormick
The problem with a restricted-access repository is we would probably have the same issues we have now: you need to ask for access, which would not be granted to you until you are well-known and/or you've got some really interesting contribution. Not a big improvement, IMHO. You

Re: [CMake] Performing cross-platform build - how ?

2007-11-13 Thread Matthew McCormick
On 11/13/07, Stephen Collyer [EMAIL PROTECTED] wrote: 1. Let's assume I want to do a Linux and Win32 build from the same source tree. 2. I have a directory tree like: ./src/whatever ./build/linux ./build/win32 ./install/linux/whatever ./install/win32/whatever All of my cross-platform source

[CMake] changing object file extension from .o

2007-11-07 Thread Matthew McCormick
Hi, Having difficulty changing the object file extension. In my CMakeLists.txtI have SET(CMAKE_C_OUTPUT_EXTENSION .obj) SET(CMAKE_CXX_OUTPUT_EXTENSION .obj) but I still get *.o object files. I am working with cmake version 2.4-patch 7 on Cygwin. Thanks.

[CMake] RE: Re: changing object file extension from .o

2007-11-07 Thread Matthew McCormick
Hi, Having difficulty changing the object file extension. In my CMakeLists.txtI have SET(CMAKE_C_OUTPUT_EXTENSION .obj) SET(CMAKE_CXX_OUTPUT_EXTENSION .obj) but I still get *.o object files. Yes, that's too late in the cmake language setup process. What do you need that for

[CMake] RE: Re: changing object file extension from .o

2007-11-07 Thread Matthew McCormick
-- Forwarded message -- From: Matthew McCormick [EMAIL PROTECTED] Date: Nov 7, 2007 5:10 PM Subject: Re: RE: Re: changing object file extension from .o To: [EMAIL PROTECTED] The mex compiler is really a bunch of scripts, shell scripts in unix and mostly a perl script in Windows

[CMake] RE: Re: changing object file extension from .o

2007-11-07 Thread Matthew McCormick
in how you dealt with this Resource Compiler stuff in Windows. It is part of the newer versions (2006 and 2007 I believe). Thanks. On 11/7/07, Maik Beckmann [EMAIL PROTECTED] wrote: Am Mittwoch 07 November 2007 22:13:32 schrieb Matthew McCormick: I'm trying to work with a compiler where