Re: [CMake] VS2010 and superbuild - Fwd: [Ctk-developers] VS2010 support

2011-07-29 Thread Sascha Zelzer
Hi, Thanks David and Yuri for the information. In my case (with CTK), there are no error messages. The download step is successfully completed and the following steps are just skipped. VS then reports that everything was successfull (or up-to-date). I will play with your test cases and my

Re: [CMake] Buggy CPack generator behaviour?

2011-07-29 Thread Eric Noulard
2011/7/29 Bjørn Forsman bjorn.fors...@gmail.com: As you guessed this is impossible without backward compat' breakage. e.g. be aware that with CPACK_SET_DESTDIR set to ON RPM and DEB behavior changes namely RPM package built with that may not be relocatable. What do you mean with 'not

Re: [CMake] Buggy CPack generator behaviour?

2011-07-29 Thread Bjørn Forsman
2011/7/29 Eric Noulard eric.noul...@gmail.com: 2011/7/29 Bjørn Forsman bjorn.fors...@gmail.com: What do you mean with 'not relocatable'? I didn't see any difference in the archive layouts of RPM and DEB when changing CPACK_SET_DESTIR from 'not set' to ON. if you do: rpm -qpi your.rpm

[CMake] Install files quietly

2011-07-29 Thread Mathias Tausig
Hello! During the installation process, I am copying a quite large directory using INSTALL(DIRECTORY foo DESTINATION bar) When I run make install, every single file contained in foo is displayed in the shell. Is there some way to prevent a install command from printing to the command line?

Re: [CMake] VS2010 and superbuild - Fwd: [Ctk-developers] VS2010 support

2011-07-29 Thread David Cole
Is your VS 2010 in German by any chance? (Or the path name to the installation of VS 2010?) We do not typically test on non-English platforms or build tools... On Fri, Jul 29, 2011 at 2:14 AM, Sascha Zelzer s.zel...@dkfz-heidelberg.dewrote: Hi, Thanks David and Yuri for the information. In

Re: [CMake] VS2010 and superbuild - Fwd: [Ctk-developers] VS2010 support

2011-07-29 Thread David Cole
Can you send along the output that you do see when your project is downloading, and the build output that immediately follows that? Does it say anything about the steps that come after download? For example, when I build the ExternalProject test and build only the project TutorialStep5-Local,

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread David Cole
On Thu, Jul 28, 2011 at 8:32 PM, Jean-Christophe Fillion-Robin jchris.filli...@kitware.com wrote: Make sure http://cmake.org/gitweb?p=cmake.git;a=commit;h=702538eaa3315f3fcad9f1daea01e6a83928967bis integrated to CMake 2.8.6 Thanks Jc This commit is already in 'master' which means it

Re: [CMake] Buggy CPack generator behaviour?

2011-07-29 Thread Hendrik Sattler
Zitat von Eric Noulard eric.noul...@gmail.com: 2011/7/29 Bjørn Forsman bjorn.fors...@gmail.com: As you guessed this is impossible without backward compat' breakage. e.g. be aware that with CPACK_SET_DESTDIR set to ON RPM and DEB behavior changes namely RPM package built with that may not be

[CMake] LINK_DIRECTORIES visual studio 2010

2011-07-29 Thread Louis Hoefler
Hello everyone. I have a simple CMake file cmake_minimum_required(VERSION 2.8) IF(DEFINED USEFCGI) SET(BACKENDLIB wtfcgi) ELSE(DEFINED USEFCGI) SET(BACKENDLIB wthttp) ENDIF(DEFINED USEFCGI) ADD_EXECUTABLE(construction.wt construction.cpp ) if(WIN32)

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread Alexander Neundorf
On Friday 29 July 2011, David Cole wrote: Hi all, Replies requested. Short replies only. Read on. Just a short reply with bug numbers or links to the bugs is all we need here. Please move specific discussions into the bugs themselves or start a new thread to talk about it... Replies on this

Re: [CMake] Assembler handling in 2.8.5 vs 2.8.4

2011-07-29 Thread Alexander Neundorf
On Friday 29 July 2011, Florian Reinhard wrote: Yay! Native support for cl6x TI compiler! :) 2011/7/22 Alexander Neundorf a.neundorf-w...@gmx.net: Can you build cmake from this branch I just created ? http://cmake.org/gitweb?p=stage/cmake.git;a=shortlog;h=refs/heads/TI_DSP_ Compiler

Re: [CMake] LINK_DIRECTORIES visual studio 2010

2011-07-29 Thread Michael Hertling
On 07/29/2011 05:13 PM, Louis Hoefler wrote: Hello everyone. I have a simple CMake file cmake_minimum_required(VERSION 2.8) IF(DEFINED USEFCGI) SET(BACKENDLIB wtfcgi) ELSE(DEFINED USEFCGI) SET(BACKENDLIB wthttp) ENDIF(DEFINED USEFCGI) ADD_EXECUTABLE(construction.wt

Re: [CMake] LINK_DIRECTORIES visual studio 2010

2011-07-29 Thread Louis Hoefler
Ah, yes this one works: cmake_minimum_required(VERSION 2.8) IF(DEFINED USEFCGI) SET(BACKENDLIB wtfcgi) ELSE(DEFINED USEFCGI) SET(BACKENDLIB wthttp) ENDIF(DEFINED USEFCGI) if(WIN32) INCLUDE_DIRECTORIES(D:/work/boost_1_46_1 D:/work/wt-3.1.10/src D:/work/wt-3.1.10/build)

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread Sean McBride
bugs: http://public.kitware.com/Bug/view.php?id=11746 http://public.kitware.com/Bug/view.php?id=8563 http://public.kitware.com/Bug/view.php?id=6215 http://public.kitware.com/Bug/view.php?id=7867 http://public.kitware.com/Bug/view.php?id=10895 features:

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread David Cole
2011/7/29 Alexander Neundorf a.neundorf-w...@gmx.net On Friday 29 July 2011, David Cole wrote: Hi all, Replies requested. Short replies only. Read on. Just a short reply with bug numbers or links to the bugs is all we need here. Please move specific discussions into the bugs

[CMake] TARGET_LINK_LIBRARIES debug optimized visual studio 2010

2011-07-29 Thread Louis Hoefler
Hello everyone. I try to set a specific library for the debug and release configuration. I try to do it this way: IF(DEFINED USEFCGI) SET(BACKENDLIB wtfcgi) ELSE(DEFINED USEFCGI) SET(BACKENDLIB wthttp) ENDIF(DEFINED USEFCGI) IF(WIN32) TARGET_LINK_LIBRARIES(construction.wt debug wtd

Re: [CMake] CMake QT4 toolbar icons disappear

2011-07-29 Thread James Sutherland
The icons are all *.tif images. Would that require a plugin? Do you happen to know what one? James On Thu, Jul 28, 2011 at 9:33 PM, clin...@elemtech.com clin...@elemtech.comwrote: Sounds like your icons are in a format supported by a plugin, and the installation has missing that plugin.

Re: [CMake] CMake QT4 toolbar icons disappear

2011-07-29 Thread David Cole
Probably qtiff4 ... You can see the available ones in your Qt build tree at plugins/imageformats On Fri, Jul 29, 2011 at 12:10 PM, James Sutherland james.sutherl...@utah.edu wrote: The icons are all *.tif images. Would that require a plugin?  Do you happen to know what one? James On Thu,

Re: [CMake] TARGET_LINK_LIBRARIES debug optimized visual studio 2010

2011-07-29 Thread David Cole
Don't put a space in between the wt and the ${BACKENDLIB} ... ? Use this instead: IF(WIN32)  TARGET_LINK_LIBRARIES(construction.wt  debug wtd${BACKENDLIB}d  optimized wt${BACKENDLIB}) ELSE(WIN32) TARGET_LINK_LIBRARIES(construction.wt wt${BACKENDLIB}) ENDIF(WIN32) Just a guess since I don't

Re: [CMake] TARGET_LINK_LIBRARIES debug optimized visual studio 2010

2011-07-29 Thread Louis Hoefler
I tried that and now I get for the debug libraries: ...;wtdwthttpd.lib;... for the release libraries: ...;wtwthttp.lib;... I want it to look like ...;wt.lib;wthttp.lib;... or ...;wtd.lib;wthttpd.lib;... my version somehow adds one release library to the debug configuration and vice versa

Re: [CMake] Cross Compiling with cmake 2.8.5

2011-07-29 Thread Alexander Neundorf
On Wednesday 27 July 2011, r.cze...@esa-grimma.de wrote: Hi all, I tried to cross-compile an internal application for windows on a linux machine, but failed, because cmake at some point re-start the configure process, and drops the CMAKE_SYSTEM_NAME variable along that way. Attached is a

Re: [CMake] TARGET_LINK_LIBRARIES debug optimized visual studio 2010

2011-07-29 Thread Michael Hertling
On 07/29/2011 06:22 PM, Louis Hoefler wrote: I tried that and now I get for the debug libraries: ...;wtdwthttpd.lib;... for the release libraries: ...;wtwthttp.lib;... I want it to look like ...;wt.lib;wthttp.lib;... or ...;wtd.lib;wthttpd.lib;... my version somehow adds one release

Re: [CMake] TARGET_LINK_LIBRARIES debug optimized visual studio 2010

2011-07-29 Thread Michael Hertling
On 07/30/2011 12:06 AM, Michael Hertling wrote: On 07/29/2011 06:22 PM, Louis Hoefler wrote: I tried that and now I get for the debug libraries: ...;wtdwthttpd.lib;... for the release libraries: ...;wtwthttp.lib;... I want it to look like ...;wt.lib;wthttp.lib;... or

Re: [CMake] Install files quietly

2011-07-29 Thread Michael Hertling
On 07/29/2011 11:43 AM, Mathias Tausig wrote: Hello! During the installation process, I am copying a quite large directory using INSTALL(DIRECTORY foo DESTINATION bar) When I run make install, every single file contained in foo is displayed in the shell. Is there some way to prevent a

Re: [CMake] LIBRARY_OUTPUT_PATH for Dynamic and Static Libraries

2011-07-29 Thread Michael Hertling
On 07/28/2011 06:21 PM, Eric Noulard wrote: 2011/7/28 Julien Dardenne julien.darde...@technooliq.com Hi, I compile my libraries into dynamic and static. I now wish to change the library path. If I am in static (folder : lib ) and dynamic (folder : dll). For now, i have this script :

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread Alan W. Irwin
Please do a fundamental fix for http://public.kitware.com/Bug/view.php?id=9220. Alan __ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS

Re: [CMake] Bug fix requests for the *next* release of CMake...

2011-07-29 Thread Alan W. Irwin
http://public.kitware.com/Bug/view.php?id=12301 ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at:

Re: [CMake] Invalid library output directory when VC++ solution is generated

2011-07-29 Thread Michael Hertling
On 07/27/2011 01:03 PM, Laura Autón García wrote: Hello glenn, Thank you for your answer. I misunderstood the documentation. Thank you for pointing this out! Documentation: ...For DLL platforms the DLL part of a shared library is treated as a runtime target and the corresponding import

Re: [CMake] Linking problem

2011-07-29 Thread Michael Hertling
On 07/27/2011 01:14 PM, Sanatan Rai wrote: Hi, This is a newbie question. So apologies in advance if this is covered somewhere in the docs (I haven't been able to find a satisfactory explanation). The issue is this: * I have a library called (lib)atmath as per:

Re: [CMake] Problem with regular expression

2011-07-29 Thread Michael Hertling
On 07/15/2011 10:10 AM, Sven Klomp wrote: Hi, I'm using cmake 2.8.3 and have a problem using regular expressions: STRING(REGEX REPLACE ^(Input:[0-9]+:)([^/].*)$ _Start_\\1_Middle_\\2_End_ TESTVARIABLE Input:1:filename1 \nInput:104:filename2 \n )

[cmake-developers] I'm sure this is often asked

2011-07-29 Thread J Decker
Any reason that environment variables can't be used as cmake variables? Like of course any cmake variable in a script would override the environment, but if it's not otherwise found, checking in the environemnt would make scripts prettier. set BUILD_TYPE=debug set BUILD_MONOLITHIC=1 cmake

Re: [cmake-developers] I'm sure this is often asked

2011-07-29 Thread Eric Noulard
2011/7/29 J Decker d3c...@gmail.com: Any reason that environment variables can't be used as cmake variables?  Like of course any cmake variable in a script would override the environment, but if it's not otherwise found, checking in the environemnt would make scripts prettier. set

[cmake-developers] [CMake 0012371]: Resource compilation gets wrong parameters on CB+MingW

2011-07-29 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12371 == Reported By:Michael Broutin Assigned To:

Re: [cmake-developers] Adding MacroWriteBasicCMakeVersionFile.cmake file to cmake ?

2011-07-29 Thread Alexander Neundorf
On Thursday 07 July 2011, Alexander Neundorf wrote: On Thursday 07 July 2011, Brad King wrote: On 7/6/2011 4:00 PM, Alexander Neundorf wrote: Since that Version.cmake file in most cases looks basically the same They're only the same within a specific community's versioning scheme. The

Re: [cmake-developers] Improved support for using cmake-based libraries in non-cmake projects

2011-07-29 Thread Brad King
On 07/18/2011 03:43 PM, Alexander Neundorf wrote: Done. There is now an enum which can have the values SCRIPT_MODE, FIND_PACKAGE_MODE and NORMAL_MODE. Good. So, CMAKE_SIZEOF_VOID_P can be given to the script from the outside via -D. Good. This should be encouraged. Is it feasible to

Re: [cmake-developers] Improved support for using cmake-based libraries in non-cmake projects

2011-07-29 Thread Alexander Neundorf
On Friday 29 July 2011, Brad King wrote: On 07/18/2011 03:43 PM, Alexander Neundorf wrote: ... Another question: the cmake.m4 is based on the m4-file for pkgconfig, which has the GPL header at the top. So, the cmake.m4 still has that header at the top. Is this a problem ? Yes. We at

Re: [cmake-developers] Adding MacroWriteBasicCMakeVersionFile.cmake file to cmake ?

2011-07-29 Thread Brad King
On 07/29/2011 12:04 PM, Alexander Neundorf wrote: On Thursday 07 July 2011, Alexander Neundorf wrote: I think everything else are special cases, at least I can't think of other generic cases. How could another common scheme look like ? Any ideas ? Huh. I thought I responded to this one

[Cmake-commits] CMake branch, next, updated. v2.8.5-1332-ga355760

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via a355760ad2c3f8ba4a0d606dd9e6093ca6aab665 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1334-g6e445fc

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 6e445fce2dc0c882f9b8a584e5b870c063311544 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1337-g9371ff1

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 9371ff19cfb91eb3b284f6d5c06f2783e410d174 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1339-g72860ee

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 72860eecf54bbe60b5490f67e6714c1e98dfcdb4 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1341-gcbd8aca

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via cbd8aca5c680925359fb953287fbace472a4e3cb (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1343-gff049a3

2011-07-29 Thread Clinton Stimpson
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via ff049a3e8ed0ad4dbc79bc647b9a35f7fa914eea (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1345-g7bde5d7

2011-07-29 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 7bde5d734e10c285fda2e69dbdb20897d8549fec (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1353-g2545186

2011-07-29 Thread Alexander Neundorf
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 25451865e6fe88c14d581a3d7f0b6fb6e046a2b9 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1355-gbb8ef43

2011-07-29 Thread Alexander Neundorf
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via bb8ef43a060a90d5e7f686c44a7ec5b5754b17ca (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1357-g2b29b89

2011-07-29 Thread Alexander Neundorf
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 2b29b89590906034e3ddace24c8fe145cce8771d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.5-76-g5502245

2011-07-29 Thread KWSys Robot
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 55022455d0470bf9175476730b43fe9283cb4283 (commit) from