Re: [CMake] CMake and Doxygen documentation

2007-02-06 Thread Eric Noulard
2007/2/6, Alan W. Irwin [EMAIL PROTECTED]: The problem I see with your scheme is that you force to generate files in-source, which looks not so good to me (I would go for ${CMAKE_BINARY_DIR}/doc) but you must have your reason. I too am somewhat concerned this messes up the source tree

[CMake] IDE directly supporting CMakeLists.txt?

2007-02-06 Thread wedekind
Hello all, does anyone know of an IDE that directly supports CMakeLists.txt as its build-configuration files? I know that kdevelop supports it, but it seems as if CMake-support is not yet fully integrated and working. Are there alternatives? Cheers Marco

AW: [CMake] Strange problem with parsing variables

2007-02-06 Thread wedekind
Hello all, I just want to revive my topic from two weeks ago. Please have a look at the mail below. Can you reproduce this behaviour? What's the reason behind it or is it a bug? Cheers Marco -Ursprüngliche Nachricht- Von: wedekind [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 26. Januar

Re: [CMake] IDE directly supporting CMakeLists.txt?

2007-02-06 Thread Mike Jackson
On Feb 6, 2007, at 7:59 AM, Andreas Schneider wrote: wedekind wrote: Hello all, Hi, does anyone know of an IDE that directly supports CMakeLists.txt as its build-configuration files? I know that kdevelop supports it, but it seems as if CMake-support is not yet fully integrated and

Re: [CMake] ADD_DEPENDENCIES Adding dependency to non-existent target: doc-testHi,

2007-02-06 Thread Bill Hoffman
frederic heem wrote: Hi, Here is the test case: top level CMakeLists.txt: ADD_CUSTOM_TARGET(doc COMMAND echo doc COMMENT generate the documentation) SUBDIRS(test1) test1 CMakeLists.txt: ADD_CUSTOM_TARGET(test1 COMMAND echo test1

AW: [CMake] Strange problem with parsing variables

2007-02-06 Thread wedekind
Hi Ken, thanks for your reply. Though I'm reading this list quite regularly I have missed this fix :( Cheers Marco -Ursprüngliche Nachricht- Von: Ken Martin [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 6. Februar 2007 16:42 An: 'wedekind'; cmake@cmake.org Betreff: RE: [CMake] Strange

Re: [CMake] ADD_DEPENDENCIES Adding dependency to non-existent target: doc-testHi,

2007-02-06 Thread frederic heem
On Tuesday 06 February 2007 4:39 pm, David Cole wrote: ADD_DEPENDENCIES(doc test1) Your ADD_DEPENDENCIES command says doc depends on test1 -- make sure the test1 target builds first before the doc target... Is that what you want? If you want it the other way around, then you just need to

RE: [CMake] Strange problem with parsing variables

2007-02-06 Thread Ken Martin
Here is the original thread - Ken http://public.kitware.com/pipermail/cmake/2006-December/012257.html Ken Martin PhD Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 -Original Message- From: wedekind [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 06, 2007 10:45

RE: [CMake] IDE directly supporting CMakeLists.txt?

2007-02-06 Thread Iain Hull
Hi, Slightly off topic... Mike Jackson wrote: I personally use Eclipse with the CDT plugin to do C++ development (Everything from c/c++/Qt/ITK/VTK/ParaView) and it works pretty good. I have just started using Eclipse and Cmake together, I was wondering if You can make the ide jump to the

[CMake] Re: IDE directly supporting CMakeLists.txt?

2007-02-06 Thread wedekind
Hello all, thanks for your hints. Well, ok, I could use any IDE that can be configured to run any command as its build command. So a text editor will do generally. But this is not exactly what I want. I'm looking for an IDE that supports the CMakeLists.txt such that it interprets them and

[CMake] cmake integration

2007-02-06 Thread Pavel Volkovitskiy
Hello! I'm trying to implement initial cmake support for conary (distributed software management system, http://wiki.rpath.com/wiki/Conary) PS: Note, i'm not official developer of it right now it has good support for configure based applications let's for example we have foo application which

[CMake] cmake can't find qt4

2007-02-06 Thread Marcin Gil
I'm learning to use cmake for qt4 programs. in main directory CMakeLists.txt: -= PROJECT(dtmanager) FIND_PACKAGE(QT4 REQUIRED) ADD_SUBDIRECTORY(src) =- in src: -= INCLUDE(${QT_USE_FILE}) INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_BINARY_DIR} ${QT_INCLUDE_DIR}

Re: [CMake] universal binary problems on mac

2007-02-06 Thread Bill Hoffman
://www.cmake.org/Testing/Sites/dashmacmini2.kitware/Darwin-Tiger-Xcode21-univ/20070206-0100-Nightly/BuildError.html /usr/bin/ld: warning -F: directory name (/.../CMake-Xcode/bin/Release) does not exist /usr/bin/ld: table of contents for archive: /.../CMake-Xcode/Source/Release/libCMakeLib.a

Re: [CMake] universal binary problems on mac

2007-02-06 Thread Sean McBride
On 2007-02-06 10:39, Bill Hoffman said: So, the mac we run our cmake dashboards was updated. This caused the cmake dashboard to start to fail. The problem seems to be a change in the behavior of the lipo command. Note, Xcode was not updated I'm curious, what was updated? I keep my 2 cmake

Re: [CMake] universal binary problems on mac

2007-02-06 Thread Bill Hoffman
Sean McBride wrote: On 2007-02-06 10:39, Bill Hoffman said: So, the mac we run our cmake dashboards was updated. This caused the cmake dashboard to start to fail. The problem seems to be a change in the behavior of the lipo command. Note, Xcode was not updated I'm curious, what

Re: [CMake] universal binary problems on mac

2007-02-06 Thread Sean McBride
On 2007-02-06 13:00, Bill Hoffman said: I have no idea, someone else did it, I think they just clicked on get software updates. Ah, it was probably François actually, he mentioned doing a swupdate on the vtk-dev list. So in a way it's my fault because he did the update to try and fix this:

Re: [CMake] Re: IDE directly supporting CMakeLists.txt?

2007-02-06 Thread Bill Hoffman
wedekind wrote: Hello all, thanks for your hints. Well, ok, I could use any IDE that can be configured to run any command as its build command. So a text editor will do generally. But this is not exactly what I want. I'm looking for an IDE that supports the CMakeLists.txt such that it

Re: [CMake] universal binary problems on mac

2007-02-06 Thread Bill Hoffman
Sean McBride wrote: On 2007-02-06 13:00, Bill Hoffman said: I have no idea, someone else did it, I think they just clicked on get software updates. Ah, it was probably François actually, he mentioned doing a swupdate on the vtk-dev list. So in a way it's my fault because he did the

[CMake] use of wildcard

2007-02-06 Thread Jean-Christophe Roux
Hello, How do I capture every file of a folder in one command? For instance, instead of set(SOURCE_FILES a.cpp b.cpp ... zzz.cpp) I'd like to write something like: set(SOURCE_FILES dir1/* dir2/*.cpp) that would save a lot of typing and maintenance. Thanks for any clue

RE: [CMake] use of wildcard

2007-02-06 Thread Kevin Tucker
Found this documentation: * AUX_SOURCE_DIRECTORY: Find all source files in a directory. AUX_SOURCE_DIRECTORY(dir VARIABLE) Collects the names of all the source files in the specified directory and stores the list in the variable provided. This command is intended to be used by

Re: [CMake] use of wildcard

2007-02-06 Thread Jean-Christophe Roux
Thank you very much! - Original Message From: Kevin Tucker [EMAIL PROTECTED] To: Jean-Christophe Roux [EMAIL PROTECTED]; cmake@cmake.org Sent: Tuesday, February 6, 2007 7:06:01 PM Subject: RE: [CMake] use of wildcard !-- _filtered {font-family:Wingdings; panose-1:5 0 0 0 0 0

Re: [CMake] use of wildcard

2007-02-06 Thread Radu Serban
Jean-Christophe Roux wrote: Hello, How do I capture every file of a folder in one command? For instance, instead of set(SOURCE_FILES a.cpp b.cpp ... zzz.cpp) I'd like to write something like: set(SOURCE_FILES dir1/* dir2/*.cpp) that would save a lot of typing and maintenance. Thanks for

[CMake] Newbie question

2007-02-06 Thread Kevin Tucker
I've been doing a lot of reading and yet, I don't seem to be able to get even the simplest project to work. I tried searching the cmake list archives, but couldn't find anything helpful. I'm on Win2k3 and cmake 2.4.6(used the windows installer) and visual studio .NET 2003. My test.c file

Re: [CMake] Newbie question

2007-02-06 Thread Tristan Carel
Hi Kevin, The problem comes from the `PROJECT' command: put some quotes on the project name otherwise CMake understands that you want to use the language `Prog' on a new project named `Test'. That is why CMake is trying to open the file CMakeProgCompiler.cmake as there are

Re: [CMake] IDE directly supporting CMakeLists.txt?

2007-02-06 Thread Alexander Neundorf
Von: Mike Jackson [EMAIL PROTECTED] Other than that, I don't have anything. I did make up a language plugin for TextMate for those of you on OS X. There are some auto completions available for it also and full (or at least as full as I could get it.. ) syntax highlighting for cmake

Re: [CMake] cmake can't find qt4

2007-02-06 Thread Alexander Neundorf
Original-Nachricht Datum: Tue, 6 Feb 2007 18:09:02 +0100 Von: Marcin Gil [EMAIL PROTECTED] An: cmake@cmake.org CC: Betreff: [CMake] cmake can\'t find qt4 I'm learning to use cmake for qt4 programs. in main directory CMakeLists.txt: -= PROJECT(dtmanager)