RE: [CMake] ADD_CUSTOM_COMMAND Bug

2008-02-14 Thread Malhotra, Anupam
Thanks a ton Bill. It worked. :) Thanks and Regards Anupam Malhotra -Original Message- From: Bill Hoffman [mailto:[EMAIL PROTECTED] Sent: Thursday, February 14, 2008 12:25 AM To: Malhotra, Anupam Cc: Cmake Mailing List Subject: Re: [CMake] ADD_CUSTOM_COMMAND Bug Malhotra, Anupam wrote:

Re: [CMake] Makefile colors and CDT generator

2008-02-14 Thread Alexander Neundorf
On Tuesday 12 February 2008, Mike Jackson wrote: > SHELL=/bin/sh > JAVA_JVM_VERSION=1.5.0 > PATH=/usr/bin:/bin:/usr/sbin:/sbin > SSH_AUTH_SOCK=/tmp/502/SSHKeychain.socket > PWD=/Users/mjackson/Workspace/PVRoboMet > HOME=/Users/mjackson > APP_ICON_8428=../Resources/Eclipse.icns > USER=mjackson > MAK

Re: [CMake] Name of Install target

2008-02-14 Thread James Bigler
I want to create a custom command or target that is dependent on the install target. What is the name of the install target. I tried "install", but that didn't seem to do what I needed: This isn't supported currently. What do you want to do exactly ? Does INSTALL(SCRIPT ) help ? Could you add

Re: [CMake] Name of Install target

2008-02-14 Thread Alexander Neundorf
On Thursday 14 February 2008, James Bigler wrote: > I want to create a custom command or target that is dependent on the > install target. What is the name of the install target. I tried > "install", but that didn't seem to do what I needed: This isn't supported currently. What do you want to d

[CMake] Name of Install target

2008-02-14 Thread James Bigler
I want to create a custom command or target that is dependent on the install target. What is the name of the install target. I tried "install", but that didn't seem to do what I needed: PROJECT(MyProj) ADD_LIBRARY(mylib SHARED mylib.cc mylib.h) ADD_EXECUTABLE(myprog myprog.cc) TARGET_LINK_

Re: [CMake] ADD_COMPILE_TEST macro

2008-02-14 Thread Mathieu Malaterre
On Tue, Feb 12, 2008 at 2:10 PM, Bill Hoffman <[EMAIL PROTECTED]> wrote: > Mathieu Malaterre wrote: > > > > > This is a test... I need to run it just like a normal test. I know > > this sound weird to check for something that do not compile. The > > simpliest case is when I need to trigger a st

Re: [CMake] @MY_VAR@ are replaced by empty string !

2008-02-14 Thread Bill Hoffman
Martin Lütken wrote: I am just trying to do a ADD_CUSTOM_COMMAND Actually just try to do: MESSAGE ( STATUS "Here a string that dissapears: @MY_VAR@ and gone it is" ) What version of CMake are you using? -Bill ___ CMake mailing list CMake@cmake.org

Re: [CMake] XCode 3.0 woes

2008-02-14 Thread Sean McBride
On 2/13/08 9:35 PM, Nico Galoppo said: >I'm having trouble with setting and hitting breakpoints in the XCode >3.0 debugger (the breakpoints turn 'yellow', i.e. can't be set). I 'Yellow breakpoints' are a FAQ on the Xcode mailing list. There was a thread just yesterday. You may want to search it

[CMake] howto disable debug and release folders for MSVC

2008-02-14 Thread Gerhard Gappmeier
Hi Is it possible to disable the generation of Debug/ and Release/ folders for the MSVC Generator? My app builds into a defined folder structure /builddir/bin/MyApp /builddir/bin/plugins/MyPlugin1 /builddir/bin/plugins/MyPlugin2 This works perfectly on linux and windows commandline with nmake.

Re: [CMake] @MY_VAR@ are replaced by empty string !

2008-02-14 Thread Bill Hoffman
Martin Lütken wrote: -Original Message- From: Bill Hoffman [mailto:[EMAIL PROTECTED] Sent: Wed 2/13/2008 7:50 PM To: Martin Lütken Cc: cmake@cmake.org Subject: Re: [CMake] @MY_VAR@ are replaced by empty string ! Martin Lütken wrote: > SHORT: > It's seems impossible to contruct a s

RE: [CMake] @MY_VAR@ are replaced by empty string !

2008-02-14 Thread Martin Lütken
I am just trying to do a ADD_CUSTOM_COMMAND Actually just try to do: MESSAGE ( STATUS "Here a string that dissapears: @MY_VAR@ and gone it is" ) -Martin -Original Message- From: [EMAIL PROTECTED] on behalf of Brandon Van Every Sent: Wed 2/13/2008 6:27 PM To: CMake Subject: Re: [CMake]