[cmake-developers] [CMake 0013004]: Archive generator (TGZ, ZIP etc) doesn't work if component-based packaging is used with CPACK_SET_DESTDIR set to ON

2012-02-29 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13004 == Reported By:Stanislaw Szymczyk Assigned To:

Re: [cmake-developers] Usage of Qt4 for Tests

2012-02-29 Thread Clinton Stimpson
On Wednesday, February 29, 2012 02:23:47 am Rolf Eike Beer wrote: The tests using Qt4 on my machine are failing: http://open.cdash.org/testDetails.php?test=136849123build=2048757 http://open.cdash.org/testDetails.php?test=136849126build=2048757 This is because this machine only has QtCore

Re: [cmake-developers] [PATCH 1/2] cmPropertyDefinition::IsChained is const

2012-02-29 Thread Brad King
On 2/29/2012 7:56 AM, Yury G. Kudryashov wrote: Brad King wrote: Please add -Woverloaded-virtual and try again. Done, fixed. Pushed to the same branch. Merged, thanks. I squashed the two Is* method fixes into the original commit: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=737c49a3

Re: [cmake-developers] Usage of Qt4 for Tests

2012-02-29 Thread Rolf Eike Beer
Am Mittwoch, 29. Februar 2012, 07:53:38 schrieb Clinton Stimpson: On Wednesday, February 29, 2012 02:23:47 am Rolf Eike Beer wrote: The tests using Qt4 on my machine are failing: http://open.cdash.org/testDetails.php?test=136849123build=2048757

Re: [cmake-developers] Two pull requests

2012-02-29 Thread Yury G. Kudryashov
Brad King wrote: On 2/28/2012 4:21 PM, Brad King wrote: On 2/28/2012 4:02 PM, Yury G. Kudryashov wrote: git pull git://gitorious.org/~urkud1/cmake/urkud-cmake.git doxygen-fixes Our style checker limits .h and .cxx files to 79 columns. Some of the updated comments exceed this limit. Please

Re: [cmake-developers] Two pull requests

2012-02-29 Thread Yury G. Kudryashov
Brad King wrote: On 2/28/2012 4:21 PM, Brad King wrote: On 2/28/2012 4:02 PM, Yury G. Kudryashov wrote: git pull git://gitorious.org/~urkud1/cmake/urkud-cmake.git run-vim-spellcheck Merged, thanks: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=adc2c990 git pull

Re: [CMake] Question regarding source tree structure and how to find libraries easily within that structure

2012-02-29 Thread Carlton Henderson
Hi Andreas,I too am new to CMake, but let me take a crack at this... someone correct me if there's a better way.You shouldn't need a find module. You only need them when you're including libraries that CMake doesn't already know the location of. Since you're building Library_1 in CMake you can

[CMake] Transitive library dependencies with parallel builds

2012-02-29 Thread Number Cruncher
Do transitive dependencies reduce number of jobs that can be compiled in parallel? If I have two libraries A and B, with an executable C, whose dependencies are described by: add_library(A ${A_SRC}) add_library(B ${B_SRC}) target_link_libraries(B A) add_executable(C ${C_SRC})

[CMake] cmake snippets

2012-02-29 Thread Andrea Crotti
If anyone is interested, I'm collecting cmake-mode yasnippet snippets for Emacs: https://github.com/AndreaCrotti/yasnippet-snippets/tree/master/cmake-mode Is anyone else using it and has some nice snippets to share? -- Powered by www.kitware.com Visit other Kitware open-source projects at

[CMake] find_package(Subversion) fails when run by an automated Jenkins build

2012-02-29 Thread Massaro Alessio
Hi there, Awkward behaviour: My CMakeLists.txt do a find_package(Subversion) Now, I have a Jenkins build server running under domain user XYZ The Jenkins CMake plugin tells me it's trying to do the following: c:\Program Files\CMake 2.8\bin\cmake.exe -G Visual Studio 9 2008

Re: [CMake] cmake snippets

2012-02-29 Thread Eric Noulard
2012/2/29 Andrea Crotti andrea.crott...@gmail.com: If anyone is interested, I'm collecting cmake-mode yasnippet snippets for Emacs: https://github.com/AndreaCrotti/yasnippet-snippets/tree/master/cmake-mode Is anyone else using it and has some nice snippets to share? I'm not using it

Re: [CMake] find_package(Subversion) fails when run by an automated Jenkins build

2012-02-29 Thread Eric Noulard
2012/2/29 Massaro Alessio alessio.mass...@mediobanca.co.uk: Hi there, Awkward behaviour: My CMakeLists.txt do a find_package(Subversion) Now, I have a Jenkins build server running under domain user XYZ The Jenkins CMake plugin tells me it’s trying to do the following:

Re: [CMake] smarter shortcuts with NSIS

2012-02-29 Thread Andrea Crotti
On 02/28/2012 05:53 PM, Eric Noulard wrote: 2012/2/28 Andrea Crottiandrea.crott...@gmail.com: On 02/28/2012 03:42 PM, Eric Noulard wrote: Yes more or less beside the fact is CPack is doing more work than that: 1) CPack handles CPack-private install location for you (including the

Re: [CMake] smarter shortcuts with NSIS

2012-02-29 Thread David Cole
On Wed, Feb 29, 2012 at 1:44 PM, Andrea Crotti andrea.crott...@gmail.com wrote: On 02/28/2012 05:53 PM, Eric Noulard wrote: 2012/2/28 Andrea Crottiandrea.crott...@gmail.com: On 02/28/2012 03:42 PM, Eric Noulard wrote: Yes more or less beside the fact is CPack is doing more work than that:

Re: [CMake] cmake snippets

2012-02-29 Thread Andrea Crotti
On 02/29/2012 06:27 PM, Eric Noulard wrote: 2012/2/29 Andrea Crottiandrea.crott...@gmail.com: If anyone is interested, I'm collecting cmake-mode yasnippet snippets for Emacs: https://github.com/AndreaCrotti/yasnippet-snippets/tree/master/cmake-mode Is anyone else using it and has some nice

[CMake] Functions inherit parent variables?

2012-02-29 Thread Robert Dailey
I ran a quick test: function( test ) message( SOME_TEST: ${SOME_TEST} ) endfunction() function( start ) set( SOME_TEST HELLO WORLD ) test() endfunction() start() Seems like a function has access to the calling scope's defined variables. I thought because functions created a new scope, that

Re: [CMake] Code and API review request for Qt5 CMake files

2012-02-29 Thread Michael Hertling
On 02/28/2012 10:03 PM, Alexander Neundorf wrote: ...will reply later in detail. Could you please go through the existing find-modules shipped with cmake which support COMPONENTS and make a summary of how they handle them ? At least FindQt4.cmake be default searches all components.

Re: [CMake] Functions inherit parent variables?

2012-02-29 Thread Michael Hertling
On 03/01/2012 01:38 AM, Robert Dailey wrote: I ran a quick test: function( test ) message( SOME_TEST: ${SOME_TEST} ) endfunction() function( start ) set( SOME_TEST HELLO WORLD ) test() endfunction() start() Seems like a function has access to the calling scope's defined

[CMake] Visual Studio 10 - GenerateDebugInformation always false

2012-02-29 Thread Johannes Sasongko
Is anyone having the problem where CMake creates VS10 project files with GenerateDebugInformation set to false for all (including Debug RelWithDebInfo) targets? If I remember correctly, this did not happen when using the VS9 generator, but I don't have VS9 handy to test. -- Johannes --

[CMake] How to include the generated header file?

2012-02-29 Thread Tan, Tom (Shanghai)
According to the doc, generate_export_header(somelib) generates a file in the ${CMAKE_CURRENT_BUILD_DIR} called somelib_export.h. What's the recommended way to include this somelib_export.h. #include somelib_export.h does not work. And ${CMAKE_CURRENT_BUILD_DIR} is empty too. I am using

Re: [CMake] How to include the generated header file?

2012-02-29 Thread Michael Wild
On 03/01/2012 07:21 AM, Tan, Tom (Shanghai) wrote: According to the doc, generate_export_header(somelib) generates a file in the ${CMAKE_CURRENT_BUILD_DIR} called somelib_export.h. What's the recommended way to include this somelib_export.h. #include somelib_export.h does not work. And

Re: [CMake] Code and API review request for Qt5 CMake files

2012-02-29 Thread Rolf Eike Beer
Michael Hertling wrote: My main conclusion from the above-noted mess among CMake's current component-aware find modules is that we urgently need a convention how such modules and config files are intended to work. Hopefully, we can take a step forward; Qt5's advent is a good opportunity.

[Cmake-commits] CMake branch, next, updated. v2.8.7-2951-gab27378

2012-02-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 ab273783b49f4d3d9b72c5c1d3f83c31638fb425 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2957-g5884dc2

2012-02-29 Thread Rolf Eike Beer
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 5884dc2e1061eda7cffd1d609bb265aa05330664 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2962-g2b89510

2012-02-29 Thread Brad King
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 2b89510c33cec1e66e05d6dfab4630367a08c512 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2964-g7e6b44d

2012-02-29 Thread Brad King
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 7e6b44d849cf8b45f6ed96c059f9fbe67b8b4fff (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2966-gab88aeb

2012-02-29 Thread Brad King
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 ab88aeb57d387c38e878e1535742065f3da8e831 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2968-gf857e77

2012-02-29 Thread Brad King
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 f857e77536ad50bc68050d31ab84a15c81a9c017 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2970-gb71538d

2012-02-29 Thread Rolf Eike Beer
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 b71538d30faa0d5ab0dbc4636a6f19e7e0e90f61 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2972-g62bb3fb

2012-02-29 Thread Bill Hoffman
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 62bb3fb93b8077a3bdee8566f3d63177bbe088c6 (commit) via