[CMake] Guidance in FindwxWidgets commit submission.

2007-09-24 Thread Miguel A. Figueroa-Villanueva
Hello, As its maintainer, I'm almost done in testing the locally updated FindwxWidgets. I've cleaned up a few things, added support for some issues in the bug tracker and deprecated some things. Before I commit, I would like to make sure I did the right thing in the following things (to avoid h

Re: [CMake] ctest question

2007-09-24 Thread Juan Sanchez
Thanks Alan for your detailed response. I think your advice is very helpful. I think I'm getting on to the right track with ctest. Regards, Juan Alan W. Irwin wrote: > On 2007-09-24 10:05-0500 Juan Sanchez wrote: > >> Hello Alan, >> >>> From your example, what in this statement that causes th

[CMake] CMake general questions

2007-09-24 Thread Neal Meyer
I'm new to cmake and I'm trying to convert some existing vcproj files to cmake files and I have a couple of questions I was hoping someone could answer I want to change the Intermediate direcotry in the project to something like $(SolutionDir)\obj\$(ProjectName)\$(ConfigurationName) cmake seems

Re: [CMake] ctest question

2007-09-24 Thread Alan W. Irwin
On 2007-09-24 10:05-0500 Juan Sanchez wrote: Hello Alan, From your example, what in this statement that causes the test to run when I type "make test"? ADD_TEST(my_first_test diff -q goldenfile testfile) All it says is to run diff. How do I tell it to generate the testfile from another exe

Re: [CMake] Overwiew CMake install commands

2007-09-24 Thread Alan W. Irwin
Hi Joachim: I have given an overview of the source, build, and install trees and source and binary packages at http://www.cmake.org/pipermail/cmake/2007-September/016433.html. Reading that overview may help you. Alan W. Irwin __ Alan W. Irwin Astronomical research affili

Re: [CMake] Overwiew CMake install commands

2007-09-24 Thread Brandon Van Every
On 9/24/07, Joachim Ziegler <[EMAIL PROTECTED]> wrote: > > I still do not understand the difference between INSTALL_FILES, > INSTALL_PROGRAMS, and INSTALL_TARGETS. As the docs say for all 3: "Old installation command. Use the INSTALL command." CMake has some legacy commands in the documentation.

Re: [CMake] Overwiew CMake install commands

2007-09-24 Thread Joachim Ziegler
Dizzy wrote: > I think you got it wrong. INSTALL() should be used ONLY for installing > binaries and such (scripts, config files, etc) and not sources. "make Yes, apparently I get it wrong, and the documentation on http://www.cmake.org/HTML/Documentation.html is unclear here: INSTALL_FILES: "Cr

[CMake] COMPARE_VERSION_STRINGS

2007-09-24 Thread James Bigler
I wrote up a page on the wiki about a new macro I wrote that allows you compare version strings directly rather than converting them to a single number for comparisons. http://www.cmake.org/Wiki/CMakeCompareVersionStrings You can compare versions with any number of dot versions. If version st

[CMake] cl.exe not able to compile a simple test program.

2007-09-24 Thread farid arvani
Hi I am a new user and have problem building the Cmake example (http://www.cmake.org/HTML/Examples.html) for MSVC .NET 2003. Whenever I am running CMAKESetup and trying to configure the project, I run into this kind of messages: # Microsoft (R) Development En

Re: [CMake] Overwiew CMake install commands

2007-09-24 Thread Dizzy
On Monday 24 September 2007 18:35:21 Joachim Ziegler wrote: > Hello list, > > I just don't get the difference between and when to use the different > INSTALL commands (or their subcategory in the new INSTALL command, > resp.) as described on > > http://www.cmake.org/Wiki/CMake:Install_Commands > >

[CMake] Overwiew CMake install commands

2007-09-24 Thread Joachim Ziegler
Hello list, I just don't get the difference between and when to use the different INSTALL commands (or their subcategory in the new INSTALL command, resp.) as described on http://www.cmake.org/Wiki/CMake:Install_Commands When would I use - INSTALL_FILES - INSTALL_PROGRAMS - INSTALL_TARGETS

Re: [CMake] ctest question

2007-09-24 Thread Juan Sanchez
Hello Alan, >From your example, what in this statement that causes the test to run when I type "make test"? ADD_TEST(my_first_test diff -q goldenfile testfile) All it says is to run diff. How do I tell it to generate the testfile from another executable? How do I tell this executable to run on

[CMake] Can't find INCLUDE file...

2007-09-24 Thread rnelias
Hi folks, I'm having a problem that seems to be very simple... I'm trying to compile a program which INCLUDES the following headers //-- #include "vtkGenericEnsightReader.h" #include "vtkXMLDataSetWriter.h" #include "vtkDataArrayCollection.h" #incl

Re: [CMake] Question about distribution questions

2007-09-24 Thread Joachim Ziegler
Hello Alan, thank you for your detailed response. Seems that we are converging. ;-) Indeed, IMHO a clarification of the terminology by means of a concrete example is what is strongly needed to get a newbie started. The work contributed to this thread should not be lost. So I would like to gi

RE: [CMake] Macro command

2007-09-24 Thread Torsten Martinsen
[EMAIL PROTECTED] <> wrote: > I want to write a macro for a local used command. > > Is it possibly to use CMAKE_CURRENT_BINARY_DIR in the macro? Yes. > Where does it point to? To the current binary directory of the called > CMakeLists.txt Yes. -Torsten This e-mail and any files sent with it

[CMake] Macro command

2007-09-24 Thread Alexander.Camek
Hi List, I want to write a macro for a local used command. Is it possibly to use CMAKE_CURRENT_BINARY_DIR in the macro? Where does it point to? To the current binary directory of the called CMakeLists.txt or the binary directory where the macro is in? Thanks for the clarification. Greetings