[CMake] Finding the intermediate output directory

2008-07-01 Thread Reggie Burnett
I am generating a custom command that will run during the pre-link phase of a target and needs to process the .obj files that are genreated. I have written my processor but now need to pass in the equivalent of $(IntDir) but I need this to work both with VS and nmake so $(IntDir) is not a good sol

[CMake] Re: Support for vcbuild in cmake

2008-01-11 Thread Reggie Burnett
bump On Jan 10, 2008 8:23 AM, Reggie Burnett <[EMAIL PROTECTED]> wrote: > Is there support for using vcbuild from the windows sdk with cmake? > AIUI, vcbuild is a tool that supports the vcproj file format but > without having to have visual studio installed. Is there a way to

[CMake] Support for vcbuild in cmake

2008-01-10 Thread Reggie Burnett
Is there support for using vcbuild from the windows sdk with cmake? AIUI, vcbuild is a tool that supports the vcproj file format but without having to have visual studio installed. Is there a way to tell cmake to generate vcproj files even though visual studio is not installed? ___

[CMake] Building x64 with platform sdk and nmake (no VS2005 installed)

2007-09-04 Thread Reggie Burnett
First, is this supported? Second, when I try it the configure step fails unable to link complaining that RTC_INitbase and RTC_Shutdown are not found. From the SDK readme, it seems that the RTC switces are not available on the AMD64 compiler that comes with the SDK. They are only available with V

[CMake] using msbuild for x64 builds

2007-08-20 Thread Reggie Burnett
We are using cmake for our internal Windows builds and want to migrate away from using Vs 2005 on our unattended builds. The main option, AIUI, is nmake but I would prefer to use msbuild. Anyone using msbuild for 32 and 64 bit SDK builds? Is this even possible? __

[CMake] Disable optimizations for an individual project

2006-10-20 Thread Reggie Burnett
What’s the best approach to disabling optimizations for a particular project?  We still want to use release settings just with optimizations turned off and then just for that single project.   Thanks Reggie     ___ CMake mailing list CM

Re: SPAM-LOW: Re: [CMake] Error adding rule using 2.4.1 beta

2006-05-11 Thread Reggie Burnett
Brad King wrote: Reggie Burnett wrote: Brad King wrote: Reggie Burnett wrote: I've discovered the problem. the cmakelists.txt files, as they sit on my system, have lowercase names. When I change them to mixed case (CMakeLists.txt), they work. Given that Windows is not case sens

Re: SPAM-LOW: Re: SPAM-MED: Re: SPAM-MED: RE: SPAM-MED: Re: [CMake] Error adding rule using 2.4.1 beta

2006-05-11 Thread Reggie Burnett
Brad King wrote: Reggie Burnett wrote: I've discovered the problem. the cmakelists.txt files, as they sit on my system, have lowercase names. When I change them to mixed case (CMakeLists.txt), they work. Given that Windows is not case sensitive, this is baffling. I have had SFU inst

Re: SPAM-MED: Re: SPAM-MED: RE: SPAM-MED: Re: [CMake] Error adding rule using 2.4.1 beta

2006-05-11 Thread Reggie Burnett
William A. Hoffman wrote: How are you running cmake exactly? Is it a .bat file? Can you give me the exact command line used? I took the two files you sent me and commented out a bunch of stuff and it works. Try attached files? I ran it like this: cd mysql mkdir b cd b ../../My\ Builds/CMakeVS

[CMake] Error adding rule using 2.4.1 beta

2006-05-09 Thread Reggie Burnett
We have a relatively small project (about 20 sub projects) that now report tons of "Error adding rule for /dir1/dir2/cmakelists.txt" for all of our sub projects. This is after upgrading to 2.4.1 beta. Are there changes to some of the standard commands and rules that might cause this? We deleted

Re: SPAM-LOW: [CMake] SET_SOURCE_FILES_PROPERTIES GENERATED not working?

2006-04-10 Thread Reggie Burnett
Reggie Burnett wrote: Today we suddenly have a situation where a file that is generated by a tool during building is being looked for by cmake. We have a SET_SOURCE_FILES_PROPERTIES call to set it to GENERATED but we still get an error that the file is not found during cmake process. Are

[CMake] SET_SOURCE_FILES_PROPERTIES GENERATED not working?

2006-04-10 Thread Reggie Burnett
Today we suddenly have a situation where a file that is generated by a tool during building is being looked for by cmake. We have a SET_SOURCE_FILES_PROPERTIES call to set it to GENERATED but we still get an error that the file is not found during cmake process. Are there any special tricks or

RE: SPAM-MED: Re: [CMake] disabling features such as C++

2006-02-06 Thread Reggie Burnett
#x27;s not generated. Can you help? Reggie > -Original Message- > From: William A. Hoffman [mailto:[EMAIL PROTECTED] > Sent: Monday, February 06, 2006 3:10 PM > To: Reggie Burnett; cmake@cmake.org > Subject: SPAM-MED: Re: [CMake] disabling features such as C++ > > At 03

[CMake] disabling features such as C++

2006-02-06 Thread Reggie Burnett
Guys, Can you tell me how to disable a feature such as exception handling for a project under cmake control? This is on Windows using Visual 7 and 8. Looking in the platform files, I see that /EHsc is automatically added to the build flags variable but I can't seem to find a good way to remove it

[CMake] Runtime library selection

2006-02-06 Thread Reggie Burnett
Is there any setting that controls whether the runtime library is selected to be dynamic or static (/MD or /MT).  I know I can hard code the settings myself but that is not optimal.   Thanks Reggie ___ CMake mailing list CMake@cmake.org h

[CMake] x64 with platform sdk

2006-02-02 Thread Reggie Burnett
I am trying to build a project for x64 using the platform sdk using nmakefiles.  The intiail discovery phase fails when looking for odbc32.lib (which doesn’t exist in the x64 platform sdk).  Does cmake not support this scenario?  Can I adjust something to make it work? Reggie __