Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-06-30 Thread Clemens Arth
Hi, I took a look at your files and I think you have done a pretty good job and that should work out well. For some reason I had to force the compiler setting to be MSVC, because cmake did not set it automatically. cmake --try-compile -DCMAKE_TOOLCHAIN_FILE="C:/Program Files/CMake 2.6/share/c

Re: [CMake] [Boost-cmake] Problem with Boost-CMake Install Rule

2008-06-30 Thread Miguel A. Figueroa-Villanueva
On Mon, Jun 30, 2008 at 7:04 PM, troy d. straszheim wrote: > Miguel A. Figueroa-Villanueva wrote: >> >> Hello, >> >> The following snippet from the Boost-CMake build CMakeLists.txt file >> is not working for me. Particularly, the REGEX ".svn" is causing the >> rule to create the ${BOOST_HEADER_DIR}

Re: [CMake] [Boost-cmake] Problem with Boost-CMake Install Rule

2008-06-30 Thread troy d. straszheim
Miguel A. Figueroa-Villanueva wrote: Hello, The following snippet from the Boost-CMake build CMakeLists.txt file is not working for me. Particularly, the REGEX ".svn" is causing the rule to create the ${BOOST_HEADER_DIR}, but doesn't copy all the files and subdirectories. It doesn't report any e

Re: [CMake] get version number from debian/changelog using cmake?

2008-06-30 Thread Mathieu Malaterre
On Mon, Jun 30, 2008 at 5:09 PM, Christopher Lang <[EMAIL PROTECTED]> wrote: > > Hi, > > is there a good or preferred way to extract the debian version number from > debian/changelog to be used in a config.h.cmake file? I guess STRING(REPLACE...) You can get fancy in your regex if from cmake you

[CMake] Problem with Boost-CMake Install Rule

2008-06-30 Thread Miguel A. Figueroa-Villanueva
Hello, The following snippet from the Boost-CMake build CMakeLists.txt file is not working for me. Particularly, the REGEX ".svn" is causing the rule to create the ${BOOST_HEADER_DIR}, but doesn't copy all the files and subdirectories. It doesn't report any errors, it is just excluding everything

Re: [CMake] Find PerlLibs fails;

2008-06-30 Thread Andreas Schneider
Georgios Petasis wrote: Hi all, Hi, some time ago I improved the FindPerlLibs.cmake module, maybe you want to give it a try. http://cmake-modules.googlecode.com/svn/trunk/Modules/PerlLibs/FindPerlLibs.cmake It uses the perl executeable to determine all needed paths. -- andreas

Re: [CMake] Component specific installation

2008-06-30 Thread Doug Gregor
On Mon, Jun 30, 2008 at 11:50 AM, Shead, Timothy <[EMAIL PROTECTED]> wrote: > On 6/27/08 8:58 PM, "Daniel Stonier" <[EMAIL PROTECTED]> wrote: > >> How do you actually trigger component specific installations though? >> I've currently got a 'headers' component. On a normal cmake with unix >> makefil

[CMake] Find PerlLibs fails;

2008-06-30 Thread Georgios Petasis
Hi all, I am running cmake 2.6 under windows: MESSAGE ( STATUS "Searching for Perl..." ) FIND_PACKAGE ( Perl ) FIND_PACKAGE ( PerlLibs ) IF ( PERL_FOUND ) MESSAGE ( STATUS " PERL_EXECUTABLE:" ${PERL_EXECUTABLE} ) MESSAGE ( STATUS " PERL_INCLUDE_PATH: " ${PERL_INCLUDE_PATH} ) ME

Re: [CMake] Component specific installation

2008-06-30 Thread Shead, Timothy
On 6/27/08 8:58 PM, "Daniel Stonier" <[EMAIL PROTECTED]> wrote: > How do you actually trigger component specific installations though? > I've currently got a 'headers' component. On a normal cmake with unix > makefiles, there's a makefile target for > > make list_all_components > > but no way of a

[CMake] get version number from debian/changelog using cmake?

2008-06-30 Thread Christopher Lang
Hi, is there a good or preferred way to extract the debian version number from debian/changelog to be used in a config.h.cmake file? many thanks Chris http://www.acurana.de/ ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listin

Re: [CMake] Unwanted quoting of $

2008-06-30 Thread Brad King
Jarl Lindrud wrote: > | > | So what do I need to do to pass a $ character through to Visual > Studio, without the quotes? I’m using cmake 2.6.0 . > | > Just $$. I had the same problem and googled it here: > http://marc.info/?l=cmake&m=120043575105964&w=2 > > - -Wojciech > > I tried that and it

Re: [CMake] Generate docbook and PDF documentation with CMake

2008-06-30 Thread Judicaël Bedouet
Sorry, I haven't specified versions. I use cmake 2.7-20080513 and dblatex 0.2.5-1 under XUbuntu. J. Bedouet On Mon, Jun 30, 2008 at 11:49 AM, Judicaël Bedouet <[EMAIL PROTECTED]> wrote: > Hello, > > I successfully generate a docbook file for my custom modules with CMake. > Now, I would like to gen

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-06-30 Thread Andreas Pokorny
Hello, Right now the WindowsCE Version is harcoded to 5.0 in the macros and the subsystem definition. A better solution might be to use the CMAKE_SYSTEM_VERSION. For that I would need a decimal-string to integer or hex conversion and reasonable defaults when CMAKE_SYSTEM_VERSION is not set. Is ther

[CMake] Generate docbook and PDF documentation with CMake

2008-06-30 Thread Judicaël Bedouet
Hello, I successfully generate a docbook file for my custom modules with CMake. Now, I would like to generate a PDF file. So I try dblatex --pdf mydocbook. dblatex finds one error at the beggining of the file. It doesn't like an empty itemizedlist. After deleting this list, it works wery well. A

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-06-30 Thread Andreas Pokorny
Hi, Why is there a Windows-cl.cmake and no Window-msvc.cmake? Shall I include things like Platform/cl inside a WinCE-msvc file? Will I need both WinCE-MSVC-C-YourHardware.cmake and WinCE-MSVC-CXX-YourHardware.cmake? I have attached the current status, it would be nice if you could review the ch

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-06-30 Thread Clemens Arth
Hi, > What is the difference between all these different windows CE systems? > I.e. is windows > mobile 5 the same as windows ce 5? well, I'm not sure if they are the same. Windows mobile 5 and 6 sdks are available in different packages (standard and professional), but each of them allows for "

[CMake] My code, or bug of cpack 2.6?

2008-06-30 Thread Georgios Petasis
Hi all, I am using cmake 2.6, and I try to simply copy some directories with the following code: FOREACH ( PKG_MODULE GUI Utils Httpd ellogon2.0 doc ) MESSAGE ( STATUS " Installation of Module: " ${PKG_MODULE} ) INSTALL ( DIRECTORY ${PKG_MODULE} DESTINATION . FILE_PERMISSIONS

Re: [CMake] Problem Porting from cmake 2.4.7 to 2.6

2008-06-30 Thread Alexander.Camek
Hi, Sorry for my late response, but there wasn't any PC at my weekend location. > Alan W. Irwin wrote: > Thanks, Brad, for pointing me in the correct direction. > Checking with the > 2.4.8 and 2.6.0 versions of the corresponding Fortran file, > the variables that must be added in total for 2.6