[CMake] CMake bug tracker accout

2008-03-12 Thread Zschocke, Florian
Hello, in order to commit a bug report, do I need an account in the Cmake bug tracker? Is http://public.kitware.com/Bug/ the same thing as http://www.gccxml.org/Bug/? I tried to create an account with the latter, but haven't received any email yet. Is the system working? Regards, Florian _

Re: [CMake] configuration specific ADD_CUSTOM_COMMAND

2008-03-12 Thread Zschocke, Florian
> From: Bill Hoffman [mailto:[EMAIL PROTECTED] > > With the use of CMAKE_CFG_INTDIR, you should be able to get to the > targets you need inside custom commands with the multiconfiguration > build systems. Have you tried CVS CMake, I think that the LOCATION of > the target includes CMAKE_CFG_INTD

Re: [CMake] configuration specific ADD_CUSTOM_COMMAND

2008-03-12 Thread Zschocke, Florian
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin Lütken > > The problem I suppose is that CMake is running before MSVC and thus have no > way > of knowing which configuration you will choose unless you tell so when > generating the project. Actually I consider this a bug, or

Re: [CMake] configuration specific ADD_CUSTOM_COMMAND

2008-03-11 Thread Zschocke, Florian
> Yes just use something like: > > IF ( ${CMAKE_BUILD_TYPE} STREQUAL "Debug" ) > > ENDIF ( ${CMAKE_BUILD_TYPE} STREQUAL "Debug" ) For generation Makefiles this could work. But what about MSVS project files? My understanding was that this wouldn't work since the CMAKE_BUILD_TYPE will not be used

Re: [CMake] Target properties LOCATION and DEBUG_POSTFIX

2008-03-11 Thread Zschocke, Florian
Hi Anteru! > I had the same problem. Read here: > http://www.cmake.org/pipermail/cmake/2008-March/020255.html Thnaks for the link. But from that I gather that you can only use the target name as an actual command and not as a parameter to the command, e.g. when copying the target to someplace, is

Re: [CMake] configuration specific ADD_CUSTOM_COMMAND (was: Target properties LOCATION and DEBUG_POSTFIX)

2008-03-11 Thread Zschocke, Florian
rom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Zschocke, Florian > Sent: Tuesday, March 04, 2008 11:22 AM > To: cmake@cmake.org > Subject: [CMake] Target properties LOCATION and DEBUG_POSTFIX > > Hi! > > I have some trouble using a target's LOCATION

[CMake] Target properties LOCATION and DEBUG_POSTFIX

2008-03-04 Thread Zschocke, Florian
Hi! I have some trouble using a target's LOCATION property in order to build a custom command. Maybe someone can tell me if this is by design and whether I can do what I intend to. I have a target that has a changed name as well as an added postfix for the Debug configuration. ADD_EXECUTABLE( te