Re: [CMake] [cmake-developers] Problems when generating xcarchive from within Xcode

2016-06-13 Thread Brad King
On 06/13/2016 02:58 PM, Roman Wüger wrote: > I have successfully configured a project with CMake 3.5.2 so it > creates a valid Release and Debug *.app bundle which runs on iOS. > However if I build an archive in Xcode with "Product->Archive" > then the app bundle seems not complete under > ~/Librar

[CMake] [ANNOUNCE] CMake 3.6.0-rc2 now ready for testing!

2016-06-13 Thread Robert Maynard
I am proud to announce the second CMake 3.6 release candidate. https://cmake.org/download/ Documentation is available at: https://cmake.org/cmake/help/v3.6 Release notes appear below and are also published at https://cmake.org/cmake/help/v3.6/release/3.6.html Some of the more significant f

[CMake] Problems when generating xcarchive from within Xcode

2016-06-13 Thread Roman Wüger
Hello, I have successfully configured a project with CMake 3.5.2 so it creates a valid Release and Debug *.app bundle which runs on iOS. However if I build an archive in Xcode with "Product->Archive" then the app bundle seems not complete under ~/Library/Developer/Xcode/Archives/YYY-MM-DD/*.xca

Re: [CMake] GCC: -std=g++14 vs -std=c++14

2016-06-13 Thread Patrick Boettcher
On Mon, 13 Jun 2016 18:40:59 +0200 Sylvain Joubert wrote: > Le 13/06/2016 11:36, Patrick Boettcher a écrit : > > Hi list, > > > > I'm using gcc for a c++14-based project. > > > > To have cmake add the corresponding -std=-flag I'm setting > > > >set_property(TARGET PROPERTY CXX_STANDARD 14) >

Re: [CMake] GCC: -std=g++14 vs -std=c++14

2016-06-13 Thread Sylvain Joubert
Le 13/06/2016 11:36, Patrick Boettcher a écrit : Hi list, I'm using gcc for a c++14-based project. To have cmake add the corresponding -std=-flag I'm setting set_property(TARGET PROPERTY CXX_STANDARD 14) This makes that when gcc is used cmake adds -std=gnu++14 . How can I make it set -st

Re: [CMake] how to compile single source file with debug options?

2016-06-13 Thread Sergey Spiridonov
Hi all On 10/06/16 14:05, Sergey Spiridonov wrote: > To debug and fix our applications/libraries we often need to recompile > single source file in a debug mode. With the our current build system it > is as simple, as touching a file an starting make with debug option. It > will then recompile th

[CMake] [ANNOUNCE] CMake Issue Tracker Moved

2016-06-13 Thread Brad King
Hi Folks, CMake issue tracking is now hosted on Kitware's GitLab instance: https://gitlab.kitware.com/cmake/cmake/issues The old mantis issue tracker will remain available as a read-only reference. All CMake issues from that tracker have been migrated to the new CMake Issues page with their o

[CMake] GCC: -std=g++14 vs -std=c++14

2016-06-13 Thread Patrick Boettcher
Hi list, I'm using gcc for a c++14-based project. To have cmake add the corresponding -std=-flag I'm setting set_property(TARGET PROPERTY CXX_STANDARD 14) This makes that when gcc is used cmake adds -std=gnu++14 . How can I make it set -std=c++14 instead? Background: my problem is the com

Re: [CMake] Testing commands that are intended to fail

2016-06-13 Thread Magnus Therning
John P. Hartmann writes: > Excuse me for asking a no doubt obvious question. > > The test case (objlink is the executable): > > add_test( nullobjlink ) > > The log: > > Output: > -- > Positional argument(s) missing. 0 specified, 1 requ