Re: [cmake-developers] A policy for Policies

2015-07-01 Thread Stephen Kelly
Brad King wrote: > On 06/20/2015 05:29 AM, Stephen Kelly wrote: >> Even -Wno-dev should have no effect on the warning when the warning is >> unconditional. > > I think that makes sense. We would need to update the wording > accordingly. > >> I don't think more conditions with deprecation states

[cmake-developers] CMake adds -qalias=noansi by XLC

2015-07-01 Thread Todd Gamblin
Hi, I asked this over on the regular cmake list and got no answer, so maybe developers is the right place for it. I noticed while poking around CMake's compiler modules that the defaults for XL are kind of inconsistent. Specifically, If you look here: https://github.com/Kitware/CMake/blob/maste

Re: [cmake-developers] Post generate step

2015-07-01 Thread Daniel Dewald
Disregard my last E-Mail.. I found the solution in the source code. The support for the iOS icons is already there ;o). -- Daniel Dewald Build Engineer Deep Silver FISHLABS Koch Media GmbH Ludwig-Erhard-Straße 1

[cmake-developers] [CMake 0015637]: Consider escaping all utf8 chars in XML test output

2015-07-01 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == https://public.kitware.com/Bug/view.php?id=15637 == Reported By:Zach Mullen Assigned To:

[cmake-developers] Post generate step

2015-07-01 Thread Daniel Dewald
Howdy folks, I'm currently in the process of converting our internal projects from premake to cmake. The process is almost complete. However I've been stuck on a seemingly simple problem the last few days that I could need some help /advise on. Since premake as well as CMake don't have an optio

Re: [cmake-developers] dry-run support

2015-07-01 Thread Honggyu Kim
> From: Eric Noulard [mailto:eric.noul...@gmail.com] > Sent: Wednesday, July 01, 2015 6:14 PM > To: Honggyu Kim > Cc: CMake Developers > Subject: Re: [cmake-developers] dry-run support > What you already have with CMake is the --trace option which can be very > useful > to understand what happen

Re: [cmake-developers] dry-run support

2015-07-01 Thread Eric Noulard
2015-07-01 10:34 GMT+02:00 Honggyu Kim : > Hi all, > > I would like to see the exact command execution list when I build using > cmake. > Make has an option "--dry-run" as many of you already know: > > $ make --help > -n, --just-print, --dry-run, --recon > Don't actua

[cmake-developers] dry-run support

2015-07-01 Thread Honggyu Kim
Hi all, I would like to see the exact command execution list when I build using cmake. Make has an option "--dry-run" as many of you already know: $ make --help -n, --just-print, --dry-run, --recon Don't actually run any commands; just print them. Can anyone please