Re: [CMake] good open source IDE

2007-07-03 Thread John Donovan
I've not used it for any big projects, only tinkering at home on a Solaris VM, but Sun Studio 12 seems pretty good. And you don't even have to install Solaris to use it! It works with x86/x64 flavours of Linux too, although my experience is limited to Solaris. It has an integrated profiler and d

Re: [CMake] Changing the include switch

2007-06-12 Thread John Donovan
- Original Message - From: "John Donovan" <[EMAIL PROTECTED]> To: Sent: Tuesday, June 12, 2007 1:40 PM Subject: [CMake] Changing the include switch An alternative is to provide the -gccincludes switch to the compiler commandline _before_ the -I switches, but CMake p

[CMake] Changing the include switch

2007-06-12 Thread John Donovan
lternative is to provide the -gccincludes switch to the compiler commandline _before_ the -I switches, but CMake puts the includes first, then the definitions and COMPILE_FLAGS property. If I can't change the switch to -I-, can I change the order in which switches get added? John Donovan -

Re: [CMake] Makefile includes

2007-06-04 Thread John Donovan
Hmmm... I was worried that'd be the case. It makes complete sense really, I'm just getting annoyed at this rubbish build system we're forced to use. *grumble* -J - Original Message - From: "Eric Noulard" <[EMAIL PROTECTED]> To: "John Donovan&qu

[CMake] Makefile includes

2007-06-04 Thread John Donovan
We're using a 3rd-party build system that is build around GNU make and CodeWarrior *shudder*, and they have provided a fairly chunky file that needs to be included at the top of the makefile, e.g.: include $(SOME_ROOT_DIR)/build/buildtools/commondefs Is it possible to get cmake to insert this l

Re: [CMake] Visual Studio GNU make projects

2007-06-04 Thread John Donovan
- Original Message - From: "Brandon Van Every" <[EMAIL PROTECTED]> To: Sent: Friday, June 01, 2007 6:16 PM Subject: Re: [CMake] Visual Studio GNU make projects You could also use CMake to produce a Visual Studio project, and implement all compiler shennanigans yourself using ADD_CUST

Re: [CMake] Visual Studio GNU make projects

2007-06-01 Thread John Donovan
- Original Message - From: "Jack Kelly" <[EMAIL PROTECTED]> To: Sent: Friday, June 01, 2007 12:02 PM Subject: Re: [CMake] Visual Studio GNU make projects Hi, I'm also new to CMake, but couldn't you generate 2 out-of-tree build systems? Indeed! How? :s I've tried setting CMAKE_SYSTEM

[CMake] Visual Studio GNU make projects

2007-06-01 Thread John Donovan
Hi, I'm new to CMake and the list, so forgive me if this has been asked before. We have a requirement to use GNU make to build our code, but we want to use Visual Studio 2005 as the IDE. Can CMake produce VS makefile projects but with a custom make command? Regards, John