Von: "wedekind" <[EMAIL PROTECTED]>
...
> 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 translates
> them into a GUI-dialog for build configuration. Maybe an example will
> clarify the reason behind it:
>
> Say you
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)
>
> FIND_P
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 fo
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
`CMakeJavaCompiler.cmak
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 i
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
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
Found this documentation:
AUX_SOURCE_DI
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 project
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
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 u
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 interpret
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:
I am not sure that CMake looks in /usr for Qt.
Do "QT4_DIR=/usr".
then do cmake and see what happens..
--
Mike Jackson Senior Research Engineer
Innovative Management & Technology Services
On Feb 6, 2007, at 12:09 PM, Marcin Gil wrote:
I'm learning to use cmake for qt4 programs.
in mai
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 w
Yep.. I hear ya and I understand. I have wanted something like this
for a while now. I have pondered the idea of extending Eclipse with
the CDT plugin to dynamically generate the CMakeLists.txt files but
the task is just to big for me alone to do. I think in the end it
would be a good IDE b
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
error is as follows :
http://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-
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}
${QT_QTNETWORK
is as follows :
http://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/lib
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
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 transla
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
On Tuesday 06 February 2007 4:43 pm, Bill Hoffman wrote:
> 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)
> >
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 A
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
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] Stra
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"
This was fixed in CVS CMake a couple weeks ago. I sent out an email
describing the issue to the list in response to a similar (or the same)
problem.
Thanks
Ken
Ken Martin PhD
Kitware Inc.
28 Corporate Drive
Clifton Park NY 12065
518 371 3971
-Original Message-
From: [EMAIL PROTECTED]
[
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 swap the args to
ADD_DEPENDENCIES.
The CMake source tree it
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 is out of date; rerun ranlib(1)
(can't load fr
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"
COMMENT "g
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 wo
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. J
On 2/6/07, frederic heem <[EMAIL PROTECTED]> wrote:
> ADD_CUSTOM_TARGET(testFoo ...)
> ADD_CUSTOM_TARGET(doc-test ...)
> ADD_DEPENDENCIES(doc-test testFoo)
>
thanks for the tips, but unfortunately, that's not working as expected,
running "make doc-test" results in
testFoo1
doc-test
testFoo2
doc
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 working. Are there
> alternatives?
there is a really cool
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
___
On Monday 05 February 2007 6:47 pm, Alan W. Irwin wrote:
> On 2007-02-05 15:58+0100 frederic heem wrote:
> > Hi,
> > It seems that ADD_DEPENDENCIES does not allow to add a dependency to
> > every target. Here is a brief description of the problem:
> > A subdirectory contains a custom target to gene
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
38 matches
Mail list logo