Re: [CMake] Error using CMake 2.8.x, Visual Studio 2010, and multiple platform SDKs.

2010-11-29 Thread Ted Berg
On 11/28/2010 10:59 PM, Bill Hoffman wrote: On 11/24/2010 5:02 PM, Ted Berg wrote: I'm seeing a reproducible failure generating Visual Studio 10 output on a system with the following installed: CMake 2.8.2 CMake 2.8.3 Visual Studio 2005 Visual Studio 2010 Program Files\Microsoft SDKs

[CMake] Error using CMake 2.8.x, Visual Studio 2010, and multiple platform SDKs.

2010-11-24 Thread Ted Berg
I'm seeing a reproducible failure generating Visual Studio 10 output on a system with the following installed: CMake 2.8.2 CMake 2.8.3 Visual Studio 2005 Visual Studio 2010 Program Files\Microsoft SDKs\Windows v6.1 v7.0A v7.1 To keep everything sane I use command files to set environment

Re: [CMake] Compiling .rc file WITHOUT linking

2009-01-15 Thread Ted Berg
Eric Lemings wrote: Greetings, How do you compile a .rc file into a .res file without linking it into a library or executable? Your paths and rc options may vary: find_program( RC_EXECUTABLE NAMES rc ) set( BINARY_RES_DIR ${PROJECT_BINARY_DIR}/resources ) add_custom_command( OUTPUT

[CMake] Duplicate manifest error

2009-01-14 Thread Ted Berg
I have been tasked with converting an existing Visual Studio project 2008 to CMake 2.6.2. The stumbling block is that this project uses a precreated manifest file, which is included in an .rc file. When the target links I get the following error: CVTRES : fatal error CVT1100: duplicate

Re: [CMake] Changes to NMake Makefiles generator in 2.6?

2008-06-23 Thread Ted Berg
Bill Hoffman wrote: OK, I have checked in a fix. [EMAIL PROTECTED] ~/My Builds/CMake/Source udio linking cmake.cxxupport large object file lists with incremental visual st Committer: Bill Hoffman [EMAIL PROTECTED] /cvsroot/CMake/CMake/Source/cmake.cxx,v -- cmake.cxx new revision: 1.387;

Re: [CMake] Changes to NMake Makefiles generator in 2.6?

2008-06-17 Thread Ted Berg
Bill Hoffman wrote: I took a quick look, and it maybe the command line length. The link.exe line is 35906 chars long. CMake is not going through the shell but using the CreateProcess function. There maybe some limit on that. I will continue to try and figure this out. It maybe that the

[CMake] CMake and OSX 10.5

2008-01-23 Thread Ted Berg
Am in the process of setting up a OSX 10.5 build box and I'm seeing a couple of issues: 1. link command line is getting -F/System/Library/Frameworks added automatically, which causes problems when I try to build against the 10.4u sdk. This issue is present in the 2.4.7 and the

Re: [CMake] CMake and OSX 10.5

2008-01-23 Thread Ted Berg
Ted Berg wrote: Am in the process of setting up a OSX 10.5 build box and I'm seeing a couple of issues: 1. link command line is getting -F/System/Library/Frameworks added automatically, which causes problems when I try to build against the 10.4u sdk. This issue is present in the 2.4.7

[CMake] Using CPack to create multiple packages

2008-01-16 Thread Ted Berg
I have a body of source code that I am building with CMake, and I am interested in using CPack for packaging. The project currently generates 5 packages during the course of a build. I might be able to reduce that to 3, but it is unlikely to go lower. Can CPack do this in one pass? My