Re: RE: [CMake] cmake 2.2 / 2.4 differences?

2006-06-26 Thread Jeroen Janssen
On 6/24/06, Alexander Neundorf [EMAIL PROTECTED] wrote: At 11:26 AM 6/23/2006, Ken Martin wrote: Is there a list of important changes between 2.2 / 2.4? (also when exactly was 2.4 released?) I have updated the News web page. Thanks for the reminder. :) While at it, the Documentation web

Re: [CMake] cmake 2.2 / 2.4 differences?

2006-06-26 Thread Jeroen Janssen
On 6/23/06, Ken Martin [EMAIL PROTECTED] wrote: This also in relation to the official book : Mastering CMake 2.2, how much is compatible with 2.4? The book was finished up around when 2.2.2 was released so it does take into account some of the changes that were made after 2.2.0. I think 2.4

[CMake] INSTALLing a directory

2006-06-26 Thread Benjamin THYREAU
Hi, i want to copy a whole recursive directory of runtime files, during the INSTALL phase. I use FILE(GLOB_RECURSE to catch the files, but then, it loses the subdirectory structure. (ie. python/__init__.py and python/test/something.py got both INSTALLed on the same DESTINATION directory..) Did

[CMake] new FindwxWidgets.cmake + UsewxWidgets.cmake

2006-06-26 Thread Jan Woetzel
Hi, Miguel A. Figueroa-Villanueva and I rewrote the find script for wxWidgets (formerly known as wxWindows). The work is based on Jorgen Boddes FindwxWin. Improvements include : - use wxWidgets instead of deprecated wxWindows variable names - Windows linking against wx static and shared(DLL)

Re: [CMake] INSTALLing a directory

2006-06-26 Thread Philippe Poilbarbe
Benjamin THYREAU a écrit : Hi, i want to copy a whole recursive directory of runtime files, during the INSTALL phase. I use FILE(GLOB_RECURSE to catch the files, but then, it loses the subdirectory structure. (ie. python/__init__.py and python/test/something.py got both INSTALLed on the same

Re: [CMake] INSTALLing a directory

2006-06-26 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philippe Poilbarbe wrote: Benjamin THYREAU a écrit : Hi, i want to copy a whole recursive directory of runtime files, during the INSTALL phase. I use FILE(GLOB_RECURSE to catch the files, but then, it loses the subdirectory structure. (ie.

Re: [CMake] new FindwxWidgets.cmake + UsewxWidgets.cmake

2006-06-26 Thread Brad King
Jan Woetzel wrote: Miguel A. Figueroa-Villanueva and I rewrote the find script for wxWidgets (formerly known as wxWindows). The work is based on Jorgen Boddes FindwxWin. Great, thanks. Please submit the files in a feature request on the bug tracker: http://www.cmake.org/Bug Thanks, -Brad

Re: [CMake] new FindwxWidgets.cmake + UsewxWidgets.cmake

2006-06-26 Thread Jan Woetzel
Brad King wrote: .. Please submit the files in a feature request on the bug tracker: Done - #3443. Jan. -- Dipl.-Ing. Jan Woetzel -- University of Kiel Institute of Computer Science and Applied Mathematics Hermann-Rodewald-Str. 3 [room

Re: [CMake] Cmake MacOSX Question

2006-06-26 Thread William A. Hoffman
This sounds very familiar. I think we figured it out once before, and talked about making this flag the default on OSX. Does that sound like a good idea? -Bill At 11:09 PM 6/24/2006, Hans Johnson wrote: Brad, Thanks for all your suggestions. They put me onto the correct path to figuring out

Re: [CMake] IF(IS_DIRECTORY behaviour

2006-06-26 Thread David Somers
On Monday 26 June 2006 16:29, Brad King wrote: David Somers wrote: [snip] BTW, I assume that IS_DIRECTORY works relative to ${CMAKE_CURRENT_SOURCE_DIR} unless a path to an absolute dir is given... the help for the IF(IS_DIRECTORY command doesn't state this at all :-( Always use a full

Re: [CMake] Cmake MacOSX Question

2006-06-26 Thread Hans Johnson
Bill, I'm always leery about changing the default behavior for things like this. This change did fix my problem, which admittedly is a due to retrofitting the build system deal with my strange requirements, but it seems like many other people are not being affected. I think that it would be

Re: [CMake] Cmake MacOSX Question

2006-06-26 Thread Brad King
William A. Hoffman wrote: At 11:09 PM 6/24/2006, Hans Johnson wrote: Thanks for all your suggestions. They put me onto the correct path to figuring out what was going on. Close inspection of the man page for ld on MacOSX indicates why the strange behavior was occuring. -search_paths_first

Re: [CMake] Cmake MacOSX Question

2006-06-26 Thread William A. Hoffman
At 10:57 AM 6/26/2006, Hans Johnson wrote: Bill, I'm always leery about changing the default behavior for things like this. This change did fix my problem, which admittedly is a due to retrofitting the build system deal with my strange requirements, but it seems like many other people are not

Re: [CMake] IF(IS_DIRECTORY behaviour

2006-06-26 Thread David Somers
On Monday 26 June 2006 16:58, Brad King wrote: When in non-script mode, am I right that it is relative to ${CMAKE_CURRENT_SOURCE_DIR? No. The current working directory of cmake is used for consistency with script mode. OK. Thanks for the clarification. Could the cmake help for this be

[CMake] Why doesn't MinGW show up in the list of generators?

2006-06-26 Thread Phillip Hellewell
Hi,I ran cmake --help on my linux machine and it shows KDevelop3 and UNIX Makefiles in the list of supported generators at the bottom. How do I get support for MinGWStudio? I thought there was support for that now. I do have MinGWStudio installed. Thanks,Phillip Hellewell

Re: [CMake] Why doesn't MinGW show up in the list of generators?

2006-06-26 Thread William A. Hoffman
At 11:55 AM 6/26/2006, Phillip Hellewell wrote: Hi, I ran cmake --help on my linux machine and it shows KDevelop3 and UNIX Makefiles in the list of supported generators at the bottom. How do I get support for MinGWStudio? I thought there was support for that now. I do have MinGWStudio

[CMake] File globbing with relative path

2006-06-26 Thread jbd
Hello everybody, Sorry for this question, i didn't find a solution on the web or even in the 2.2 version book, but i'm quite a beginner regarding CMake =) I'd like to retrieve the relative path of a list of files. For example : FILE (GLOB SRC_FILES Test*.cxx Test*.cpp Test*.c) Here, SRC_FILES

Re: [CMake] File globbing with relative path

2006-06-26 Thread Jan Woetzel
jbd wrote: I'd like to retrieve the relative path of a list of files. For example : FILE (GLOB SRC_FILES Test*.cxx Test*.cpp Test*.c) See the RELATIVE option FILE(GLOB variable [RELATIVE path] [globbing expressions]...) Jan. -- Dipl.-Ing. Jan Woetzel

[CMake] Re: File globbing with relative path

2006-06-26 Thread jbd
See the RELATIVE option FILE(GLOB variable [RELATIVE path] [globbing expressions]...) Jan. Thank you for suck a quick answer, but i can't figure out to make that work. I'm running CMake 2.2, and cmake --help-command FILE show me : FILE(GLOB variable [globbing expressions]...) and

Re: [CMake] Re: File globbing with relative path

2006-06-26 Thread Jan Woetzel
jbd wrote: ... i tried : FILE (GLOB SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} Test*.cpp) but it doesn't work. This works here with CMake 2.4.2: FILE(GLOB FOO RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.c*) MESSAGE(DBG FOO=${FOO}) Jan. ___

[CMake] Bug Tracker version

2006-06-26 Thread Jan Woetzel
.. and the bug tracker is also stuck at version 2.4.0 Jan. ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] Compile/install on HPUX on ia64 (Itanium)

2006-06-26 Thread David Akdikmen
Hi, I am trying to get cmake to build with the aC++ compiler on Itanium version of HP-UX. I got the source, cmake-2.4.2, and ran ./configure (which runs ./bootstrap). So far it is outputting many errors when doing the make. Looks like either the compiler is not complaining about missing

[CMake] Re: Re: File globbing with relative path

2006-06-26 Thread jbd
This works here with CMake 2.4.2: Indeed, it work well with 2.4.2. I was running 2.2. Thank you for your patience ! ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] Writing cmake files for modules

2006-06-26 Thread Asmodehn Shade
Hi,I am writing a small set of libraries, and I like to use cmake to detect and configure them.I am still a bit lost among the possibility, and I was wondering what is the right way to do it.Let say I have libA and libB, with A depending on B, and B can be built with different options. From what I