[CMake] [DOC] -f arg to cmake -E remove

2007-07-16 Thread Mathieu Malaterre
Patch to specify -f arg in the documentation. $ cvs di Source/cmake.cxx Index: Source/cmake.cxx === RCS file: /cvsroot/CMake/CMake/Source/cmake.cxx,v retrieving revision 1.309 diff -u -r1.309 cmake.cxx --- Source/cmake.cxx16 Jul

Re: [CMake] Help Please-Link Library

2007-07-16 Thread Bill Hoffman
Eric Noulard wrote: 2007/7/17, Bill Hoffman <[EMAIL PROTECTED]>: Eric Noulard wrote: > > If your lib is not in the lib search path then you need to add the > appropriate > PATH using the LINK_DIRECTORIES macro > It is much better to add the full path to the library, and use FIND_LIBRARY. Much

Re: [CMake] ADD_CUSTOM_COMMAND issues

2007-07-16 Thread Brandon Van Every
I reproduce the lack of COMMENT. My system is CMake 2.4.6, Windows 2000 SP4, MinGW generator, mingw32-make executed from a Windows command prompt. This is a bug. Please file it in the bug tracker, I'd say priority "3 - Medium". Feel free to cut-n-paste my confirmation. C:\devel\mingw\append>m

Re: [CMake] Help Please-Link Library

2007-07-16 Thread Eric Noulard
2007/7/17, Bill Hoffman <[EMAIL PROTECTED]>: Eric Noulard wrote: > > If your lib is not in the lib search path then you need to add the > appropriate > PATH using the LINK_DIRECTORIES macro > It is much better to add the full path to the library, and use FIND_LIBRARY. Much better? Why? In order

Re: [CMake] Help Please-Link Library

2007-07-16 Thread Bill Hoffman
Eric Noulard wrote: 2007/7/16, Janny Dong <[EMAIL PROTECTED]>: Hi all, I am using Cmake to build MS Visual C++ program because I am using VTK. I'd like to link to another thirty-party library in my project. The library is already installed on my machine by running the executable setup file .

Re: [CMake] Help Please-Link Library

2007-07-16 Thread Eric Noulard
2007/7/16, Janny Dong <[EMAIL PROTECTED]>: Hi all, I am using Cmake to build MS Visual C++ program because I am using VTK. I'd like to link to another thirty-party library in my project. The library is already installed on my machine by running the executable setup file . In a project not built

Re: [CMake] Bugs in cmake-2.4.6, please solve for 2.4.7

2007-07-16 Thread Hendrik Sattler
Am Montag 16 Juli 2007 22:45 schrieb Alexander Neundorf: > Ok. Is this different from 2.4.6 ? Yes, on 2.4.6, cmake completely fails: [EMAIL PROTECTED]:~/efa/build$ cmake .. -- Check for working C compiler: /home/hendrik/bin/gcc -- Check for working C compiler: /home/hendrik/bin/gcc -- works -- Che

Re: [CMake] Bugs in cmake-2.4.6, please solve for 2.4.7

2007-07-16 Thread Alexander Neundorf
On Monday 16 July 2007 16:11, Hendrik Sattler wrote: > Am Montag 16 Juli 2007 20:13 schrieb Alexander Neundorf: > > On Wednesday 11 July 2007 14:17, Hendrik Sattler wrote: > > > Am Mittwoch 11 Juli 2007 16:24 schrieb Alexander Neundorf: > > > > I can't reproduce a problem. Please try the attached t

Re: [CMake] Bugs in cmake-2.4.6, please solve for 2.4.7

2007-07-16 Thread Hendrik Sattler
Am Montag 16 Juli 2007 20:13 schrieb Alexander Neundorf: > On Wednesday 11 July 2007 14:17, Hendrik Sattler wrote: > > Am Mittwoch 11 Juli 2007 16:24 schrieb Alexander Neundorf: > > > I can't reproduce a problem. Please try the attached testcase and tell > > > me how to reproduce your problem. > >

[CMake] Help Please-Link Library

2007-07-16 Thread Janny Dong
Hi all, I am using Cmake to build MS Visual C++ program because I am using VTK. I'd like to link to another thirty-party library in my project. The library is already installed on my machine by running the executable setup file . In a project not built by Cmake, all I need to do is just modify th

Re: [CMake] Bugs in cmake-2.4.6, please solve for 2.4.7

2007-07-16 Thread Alexander Neundorf
On Wednesday 11 July 2007 14:17, Hendrik Sattler wrote: > Am Mittwoch 11 Juli 2007 16:24 schrieb Alexander Neundorf: > > I can't reproduce a problem. Please try the attached testcase and tell me > > how to reproduce your problem. > > I extended you example to trigger the problem. See the attached a

Re: [CMake] Hard to find the sources of cmake

2007-07-16 Thread Olivier Delannoy
if you really want to make something obvious more obvious, you can split the download area in two sections : binary and source. For whom who can't understand what is written on the right column. CMake is definitely not something they should look at. On 7/16/07, Brandon Van Every <[EMAIL PROTEC

Re: [CMake] Hard to find the sources of cmake

2007-07-16 Thread Brandon Van Every
On 7/16/07, Alexander Neundorf <[EMAIL PROTECTED]> wrote: On Sunday 15 July 2007 12:56, Brandon Van Every wrote: ... > platform? Generally you have to know your way around a command shell > to do that. Or have Gnome and KDE really advanced the state of the > art to the point where everything is

Re: [CMake] no Mac installation instructions on webpage

2007-07-16 Thread Sean McBride
On 7/15/07 12:44 PM, Brandon Van Every said: >http://www.cmake.org/HTML/Install.html talks about Windows, Unix, and >Cygwin, but not about the Mac. That's an oversight. Mac users might >be inclined to regard their system as a Unix for purposes of a build, >but it's bad marketing not to have clea

Re: [CMake] Hard to find the sources of cmake

2007-07-16 Thread Alexander Neundorf
On Sunday 15 July 2007 12:56, Brandon Van Every wrote: ... > platform? Generally you have to know your way around a command shell > to do that. Or have Gnome and KDE really advanced the state of the > art to the point where everything is hidden? Yes, with KDE you can click a tar.gz file and just

Re: [CMake] ADD_CUSTOM_COMMAND issues

2007-07-16 Thread Yegor Yefremov
Brandon Van Every wrote: On 7/13/07, Yegor Yefremov <[EMAIL PROTECTED]> wrote: # executables add_executable (test ${SRCS}) add_custom_command (TARGET test POST_BUILD COMMAND ctags -R WORKING_DIRECTORY ${TEST_SOURCE_DIR} COMMENT "Creating tags" VERBATIM) Does changing the order of COMMAND, WOR