[cmake-developers] [CMake 0012604]: Always fail to check for bcc32.exe

2011-12-01 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=12604 == Reported By:Hong Xu Assigned To:

Re: [cmake-developers] cmake automoc breaks kde

2011-12-01 Thread Alexander Neundorf
On Thursday 01 December 2011, Stephen Kelly wrote: Alexander Neundorf wrote: Thanks. diff --git a/tier1/solid/solid/audiointerface.cpp b/tier1/solid/solid/audiointerface.cpp index ddf6cbc..98e42b2 100644 --- a/tier1/solid/solid/audiointerface.cpp +++

Re: [cmake-developers] cmake automoc breaks kde

2011-12-01 Thread Stephen Kelly
Alexander Neundorf wrote: but this still means that even if we start to require cmake 2.8.7 for kdelibs4, we still need the standalone automoc (which I don't feel like maintaining). Well, kdelibs4 is not really going to get any more releases. I'm not sure it makes sense to change the

Re: [cmake-developers] cmake automoc breaks kde

2011-12-01 Thread David Cole
On Thu, Dec 1, 2011 at 3:18 PM, Alexander Neundorf neund...@kde.org wrote: On Thursday 01 December 2011, Stephen Kelly wrote: Alexander Neundorf wrote: Thanks. diff --git a/tier1/solid/solid/audiointerface.cpp b/tier1/solid/solid/audiointerface.cpp index ddf6cbc..98e42b2 100644 ---

Re: [cmake-developers] cmake automoc breaks kde

2011-12-01 Thread Alexander Neundorf
On Thursday 01 December 2011, David Cole wrote: ... You have two topics on the stage with common parent commits: AutomocIncludedDotMocFileHandling (not presently in next) and RestoreAutmocKDECompatibility (which is presently in next)... Are you planning to keep both of these, or are you

Re: [cmake-developers] target_include_directories branch in stage

2011-12-01 Thread Stephen Kelly
Brad King wrote: On 11/29/2011 7:34 AM, Stephen Kelly wrote: I've been working on this topic again, but I forgot that I had not merged it into next. I think I properly reverted it though. I added another commit to the revert-... branch to fully revert it. To avoid accidental merges of

Re: [cmake-developers] The upcoming CMake 2.8.7 release candidate cycle

2011-12-01 Thread David Cole
Reminder for contributors: Just one more reminder: CMake 2.8.7-rc1 is scheduled for next Wednesday, Dec. 7th. Please get topics finished up and merged to 'next' before 01:00:00 UTC next Tuesday morning. (That's Monday night at 8 pm here on the East coast of the US.) Thanks, David On Wed, Nov

Re: [cmake-developers] target_include_directories branch in stage

2011-12-01 Thread Brad King
On 12/1/2011 3:47 PM, Stephen Kelly wrote: https://github.com/Kitware/CMake and use the Fork button Ok. I've pushed it to my gitorious repo for now. I'll remove the config stuff there and let you know when that's done. Should I push it to github too or is gitorious also ok when it's ready

Re: [cmake-developers] target_include_directories branch in stage

2011-12-01 Thread Stephen Kelly
Brad King wrote: On 12/1/2011 3:47 PM, Stephen Kelly wrote: https://github.com/Kitware/CMake and use the Fork button Ok. I've pushed it to my gitorious repo for now. I'll remove the config stuff there and let you know when that's done. Should I push it to github too or is gitorious also

[CMake] cdash hiding dashboards

2011-12-01 Thread Yngve Levinsen
Dear Developers, I am sure I have just managed to configure something wrong somewhere, but I cannot find it. My CDash page now looks like this: http://dl.dropbox.com/u/2293502/cdash_missingDashboards.png In short, Experimental, Nightly and Continuous aren't showing. They are there, as an

[CMake] output of custom_command ?

2011-12-01 Thread Anders Wallin
Hi all, I'm building some Lyx documentation with asymptote figures. I'm generating the figures in EPS format like this: add_custom_command( OUTPUT ${ASYFIG}.eps COMMAND asy ${CMAKE_CURRENT_SOURCE_DIR}/${ASYFIG}.asy DEPENDS ${ASYFIG}.asy ) and the the document in PDF

[CMake] Friday

2011-12-01 Thread Mateusz Łoskot
Hi Chiara, Let's do climbing on Friday. You still up for that? Ciao, Mateo -- 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] Friday

2011-12-01 Thread Mateusz Łoskot
Folks, I sincerely apologies. It wasn't supposed to go to *C*Make list but to a friend whose name starts with *C* :) Please, ignore. Regards, Mat 2011/12/1 Mateusz Łoskot mate...@loskot.net: Hi Chiara, Let's do climbing on Friday. You still up for that? Ciao, Mateo -- Mateusz Loskot,

Re: [CMake] output of custom_command ?

2011-12-01 Thread David Cole
You are not expressing any dependency between the custom commands, so they may run in parallel, or in any order... If they are connected and the running of one depends on the output of the other, you need to express that. add_custom_command( OUTPUT ${ASYFIG}.eps COMMAND asy

Re: [CMake] output of custom_command ?

2011-12-01 Thread Michael Hertling
On 12/01/2011 03:50 PM, Anders Wallin wrote: Hi all, I'm building some Lyx documentation with asymptote figures. I'm generating the figures in EPS format like this: add_custom_command( OUTPUT ${ASYFIG}.eps COMMAND asy ${CMAKE_CURRENT_SOURCE_DIR}/${ASYFIG}.asy

Re: [CMake] FindDCMTK Not setting up DCMTK_INCLUDE_DIRECTORIES Correctly?

2011-12-01 Thread Niels Dekker - address until 2014
On 2011-11-29 18:19, kent williams wrote: While I'm whining -- FindDCMTK.cmake doesn't include liboflog.a in DCMTK_LIBRARIES either. Thomas Sondergaard wrote: New in dcmtk-3.6.0, I think. We need to file a bug against FindDCMTK.cmake to have it find that library too. FYI, Dan Thill did so

Re: [CMake] 2D arrays

2011-12-01 Thread Robert Dailey
On Wed, Nov 30, 2011 at 7:18 PM, Michael Hertling mhertl...@online.dewrote: On 11/30/2011 03:29 AM, Robert Dailey wrote: I use macros so the _array2d_ variables fall through the scope of the macro and are available in the next call to array2d_advance(). I could use functions + properties

Re: [CMake] Program with Qt opening with a bash screen on windows before showing the gui...

2011-12-01 Thread Ben Medina
Qt also provides qtmain.lib to resolve the need for WinMain, in case you run into that linker error. On Wed, Nov 30, 2011 at 4:26 PM, David Cole david.c...@kitware.com wrote: On Wed, Nov 30, 2011 at 6:51 PM, Renato Utsch renatout...@gmail.com wrote: Hello CMake guys... Well, I was writing a

Re: [CMake] Program with Qt opening with a bash screen on windows before showing the gui...

2011-12-01 Thread Michael Jackson
And in a cross platform environment you want to detect the system being compiled for and insert the proper keyword to add_executable(). # Default GUI type is blank set(GUI_TYPE ) #-- Configure the OS X Bundle Plist if (APPLE) SET(GUI_TYPE MACOSX_BUNDLE)

Re: [CMake] Program with Qt opening with a bash screen on windows before showing the gui...

2011-12-01 Thread norulez
Maybe you must also add the following line: SET(QT_USE_QTMAIN TRUE) Best Regards NoRulez Am 01.12.2011 um 19:25 schrieb Michael Jackson mike.jack...@bluequartz.net: And in a cross platform environment you want to detect the system being compiled for and insert the proper keyword to

Re: [CMake] 2D arrays

2011-12-01 Thread Robert Dailey
PARENT_SCOPE isn't working for me. For example, I changed one line in array2d_begin_loop to the following: set( _array2d_index 0 PARENT_SCOPE ) And from within array2d_advance(), I do: message( _array2d_index: ${_array2d_index} ) and it prints no value. Can you try this and see if it works for

Re: [CMake] Program with Qt opening with a bash screen on windows before showing the gui...

2011-12-01 Thread Michael Jackson
This is what I have in my own CMakeLists.txt file: # -- # Qt 4 Section # -- # by default only QtCore and QtGui modules are enabled

[CMake] DEB and RPM Generation?

2011-12-01 Thread David Cristian
Hello devs! I've searh the net with no result, i have a project builds various apps and libs, i managed to use cmake/cpack to build and create packages for win32 and debian and i have two questions. 1 First, it's posibible to build a deb package and rpm simultaneusly from a CMAKELists.txt? Can I

Re: [CMake] DEB and RPM Generation?

2011-12-01 Thread Eric Noulard
2011/12/1 David Cristian auled...@gmail.com: Hello devs! I've searh the net with no result, i have a project builds various apps and libs, i managed to use cmake/cpack to build and create packages for win32 and debian and i have two questions. 1 First, it's posibible to build a deb package

Re: [CMake] The upcoming CMake 2.8.7 release candidate cycle

2011-12-01 Thread David Cole
Reminder for contributors: Just one more reminder: CMake 2.8.7-rc1 is scheduled for next Wednesday, Dec. 7th. Please get topics finished up and merged to 'next' before 01:00:00 UTC next Tuesday morning. (That's Monday night at 8 pm here on the East coast of the US.) Thanks, David On Wed, Nov

[CMake] Best practices/preferred methods for linking external libraries

2011-12-01 Thread Matthew LeRoy
We began using CMake a few months ago for a couple of small cross-platform projects, and we're still learning all the ins and outs and capabilities CMake has to offer, as well as how to get the most out of CMake by using it The Right Way. Right now, we're trying to figure out how to link to

[CMake] XCode post-build processing?

2011-12-01 Thread g...@novadsp.com
How can I get the same effect as the Visual Studio post-build rules? Nothing too fancy, just copy and zip files into a /dist directory. Thx++ -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [CMake] DEB and RPM Generation?

2011-12-01 Thread David Cristian
Thanks for your quick response! I'll have all this things in consideration, specially wrong dependencies and libs version. I'll plan to test packages on vbox for others distros, my project isn't big or complex (just a few dependencies), and I'll guess binary libs compatibility isn't and issue

Re: [CMake] FindDCMTK Not setting up DCMTK_INCLUDE_DIRECTORIES Correctly?

2011-12-01 Thread Michael Hertling
On 12/01/2011 08:22 AM, Thomas Sondergaard wrote: On 2011-11-30 07:23, Michael Hertling wrote: On 11/29/2011 08:49 PM, Thomas Sondergaard wrote: On 2011-11-29 18:19, kent williams wrote: I actually install DCMTK in a subdirectory of my top-level build, and then my program that uses DCMTK is

Re: [CMake] Program with Qt opening with a bash screen on windows before showing the gui...

2011-12-01 Thread Michael Wild
AFAIK you can simplify this if you always want to build a WIN32 executable on WIN32 and a MACOSX_BUNDLE on APPLE: add_executable(myprogram WIN32 MACOSX_BUNDLE ${SOURCES}) Michael On 12/01/2011 07:25 PM, Michael Jackson wrote: And in a cross platform environment you want to detect the system

Re: [CMake] XCode post-build processing?

2011-12-01 Thread Michael Wild
On 12/01/2011 11:24 PM, g...@novadsp.com wrote: How can I get the same effect as the Visual Studio post-build rules? Nothing too fancy, just copy and zip files into a /dist directory. Thx++ Are you looking for the add_custom_command(TARGET ... POST_BUILD ...) signature? Michael --

Re: [CMake] DEB and RPM Generation?

2011-12-01 Thread Eric Noulard
2011/12/2 David Cristian auled...@gmail.com: Thanks for your quick response! I'll have all this things in consideration, specially wrong dependencies and libs version. I'll plan to test packages on vbox for others distros, my project isn't big or complex (just a few dependencies), and I'll

[Cmake-commits] CMake branch, master, updated. v2.8.6-284-g3f4672b

2011-12-01 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, master has been updated via 3f4672b1d70c84bfcb9f362f00a452d12c07c4e4 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-287-g9c288d6

2011-12-01 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, master has been updated via 9c288d6c2b0c762b36974755e459d421d186f7e0 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-289-gf64d85e

2011-12-01 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, master has been updated via f64d85e71133d3f5fd3ecf4b089c35dbb6d9e0ac (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-291-gf1ad054

2011-12-01 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, master has been updated via f1ad05431728fa7399f4623342061f89ba899465 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-293-g333fd11

2011-12-01 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, master has been updated via 333fd1131c539e60a8da6ad1e8516009eabf11c2 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-301-g9401da8

2011-12-01 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, master has been updated via 9401da808446b1746c75e81b9b6056b96a122fe9 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.6-2087-gd8cc11e

2011-12-01 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 d8cc11ea00615b8aed62d0cbe12ef602cd3aa1ae (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.6-2090-g7ac4f0e

2011-12-01 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 7ac4f0ef2f2ab32f72f55bba1b2b947bb44fd9d9 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.6-2092-gd4d9bab

2011-12-01 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 d4d9baba5b38b855502f4c0bd6fda5b5f8eebdd1 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-302-g8bda047

2011-12-01 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 8bda047b8e53f9bcbba60bc43ba6c116693c99a3 (commit) from