Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread Michael Wild
On Wed 31 Aug 2011 11:26:19 PM CEST, David Cole wrote: > On Wed, Aug 31, 2011 at 5:12 PM, Clinton Stimpson > wrote: >> On Wednesday, August 31, 2011 10:30:22 am David Cole wrote: >>> On Wed, Aug 31, 2011 at 11:49 AM, David Cole wrote: The cmake -E rename command is documented to work only w

Re: [CMake] CMake --debug-trycompile option breaking tests

2011-08-31 Thread Clifford Yapp
On Wed, Aug 31, 2011 at 2:14 PM, Bill Hoffman wrote: > > It would make a mess if you created a sub-dir per test.  There would be lots > and lots of sub-dirs in some projects. Personally I would expect that, and be OK with it, as long as the directory names corresponded to the test in question - i

[CMake] Skipping dependency checking... aka an all/fast target

2011-08-31 Thread Malfettone, Kris
I am looking for a target similar to /fast for the entire tree, possibly all/fast. I have seen in the past this feature has been requested and from what I could understand from the archives it looked as though the feature was supposed to be implemented. However, I cannot seem to find it. I wa

Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread David Cole
On Wed, Aug 31, 2011 at 5:12 PM, Clinton Stimpson wrote: > On Wednesday, August 31, 2011 10:30:22 am David Cole wrote: >> On Wed, Aug 31, 2011 at 11:49 AM, David Cole wrote: >> > The cmake -E rename command is documented to work only when src and >> > dst are on the same volume: >> > >> > If you

Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread Clinton Stimpson
On Wednesday, August 31, 2011 10:30:22 am David Cole wrote: > On Wed, Aug 31, 2011 at 11:49 AM, David Cole wrote: > > The cmake -E rename command is documented to work only when src and > > dst are on the same volume: > > > > If you run "cmake -E" with no other args, the rename command is > > doc

Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread Clifford Yapp
Fair enough - I think I've worked around it now. Sorry for the noise, I missed the save volume restriction on rename originally. Cheers, CY On Wed, Aug 31, 2011 at 11:49 AM, David Cole wrote: > The cmake -E rename command is documented to work only when src and > dst are on the same volume: > >

[CMake] Is there a git repository for CDash

2011-08-31 Thread NoRulez
Hi, I want to ask if there is a git repository for CDash available or be planned to be converted. At the moment I use the svn version ("https://www.kitware.com/svn/CDash/Release-1-8-2";) Thanks in advance Best regards NoRulez ___ Powered by www.kitw

[CMake] Ralph Barth/AEH/DBS/GDB ist außer Haus.

2011-08-31 Thread Ralph . Barth
Ralph Barth will be out of the office starting 31/08/2011 and will be returning on 19/09/2011. Ich werde Ihre Nachrichten nach meiner Rückkehr beantworten. WLLM related questions pls. contact Jens Keil - Deutsche Börse AG

Re: [CMake] CMake --debug-trycompile option breaking tests

2011-08-31 Thread Bill Hoffman
On 8/30/2011 4:13 PM, Clifford Yapp wrote: Hmm. What about changing that option to make one sub-directory per test instead of doing each one in the same temp directory? Or if try_compile doesn't support that, moving the generated files to a subdirectory after the try_compile proper has run? Th

Re: [CMake] Bug #12189

2011-08-31 Thread David Cole
The CMake/Tests/CMakeLists.txt file lists most of the tests that execute on our dashboards. The directories under CMake/Tests are all the existing test source trees. If you want to modify one of the existing tests to have an "_SBCS" target compile definition, I'd start by looking at "Simple" or "C

Re: [CMake] Bug #12189

2011-08-31 Thread aaron . meadows
I'm happy to assist in any way I can. Where do I need to add a test? Also, where would it be appropriate to document this? Aaron Meadows -Original Message- From: David Cole [mailto:david.c...@kitware.com] Sent: Wednesday, August 31, 2011 11:02 AM To: Meadows, Aaron C. Cc: cmake@cmake

Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread David Cole
On Wed, Aug 31, 2011 at 11:49 AM, David Cole wrote: > The cmake -E rename command is documented to work only when src and > dst are on the same volume: > > If you run "cmake -E" with no other args, the rename command is documented as: > >  rename oldname newname    - rename a file or directory (on

Re: [CMake] Bug #12189

2011-08-31 Thread David Cole
Your patch has the "wrong sense" I think It looks like it's removing "_SBCS" code, but you want to add all that code, correct? I think (as long as my above assumption is correct) that this patch should be ok, even in a backwards compatibility sense, because only people who have "_SBCS" defined

Re: [CMake] Problem and proposed solution with cmake -E rename across devices

2011-08-31 Thread David Cole
The cmake -E rename command is documented to work only when src and dst are on the same volume: If you run "cmake -E" with no other args, the rename command is documented as: rename oldname newname- rename a file or directory (on one volume) I think doing a copy as a fallback is a reasonab

Re: [CMake] add_custom_command(TARGET ..) does nothing if target don't exist?

2011-08-31 Thread David Cole
That seems like add_custom_command should fail with an error when the named target does not exist. (I have never noticed this, because I never use that signature of add_custom_command...) On Tue, Aug 30, 2011 at 12:45 PM, Johan Björk wrote: > Hi guys, > I just ran into the following issue, and I

Re: [CMake] Bug #12189

2011-08-31 Thread aaron . meadows
Any of you CMakers want to comment on this bug and patch? I'd like to be able to switch my company back to the public version of CMake instead of compiling my own flavor every time there is a release... Aaron Meadows From: Meadows, Aaron C. Sent: Thursday, June 23, 2011 2:23 PM To: Mea

Re: [CMake] dyld: library not loaded

2011-08-31 Thread Michael Jackson
You may want to take a look at the Qt Demo application linked from the Wiki. http://www.cmake.org/Wiki/BundleUtilitiesExample ___ Mike Jackson www.bluequartz.net Principal Software Engineer mike.jack...@bluequartz.

Re: [CMake] dyld: library not loaded

2011-08-31 Thread Michael Jackson
Please keep replies on the list so others may join or benefit from the conversation. You will need to add the "macosx_bundle" flag to your add_executable() command. This tells CMake to generate the instructions to create a proper OS X application bundle. Next you will need to explore adding a

Re: [CMake] dyld: library not loaded

2011-08-31 Thread Michael Jackson
You need to copy the library into the .app bundle at MeshVisualization.app/Contents/Libraries/. Your "add_executable()" command should have the "MACOSX_BUNDLE" set in. See the help listing for the add executable. ___ Mike Jackson

[CMake] dyld: library not loaded

2011-08-31 Thread Yifei Li
Hi all, My app MeshVisualization uses a library called OpenMesh. I had a runtime error when running the app: dyld: Library not loaded: @executable_path/../Libraries/libOpenMeshCore.2.0.dylib Referenced from: /Users/yifli/Documents/MeshVisualization/build/Build/bin/MeshVisualization Reason:

[CMake] CVS -N option, unable to update code in continuous/nightly builds

2011-08-31 Thread Sergio Vera
uild name: SegmentationLib.sta.Win32-vs9-Release* *1>Create new tag: 20110831-0827 - Continuous* *1> Updating the repository: C:/work/projects/ALMA_Segmentation/SegmentationLib* *1> Use CVS repository type* *1> Gathering version information (one . per updated file):* *1>* *1> Update command fai