Re: [cmake-developers] Targets for FindGTK2.cmake

2013-09-12 Thread Daniele E. Domenichelli
On 11/09/13 19:21, Brad King wrote: Do these tests share a build tree? GTK2Targets.gtk and GTK2Components.gtk failed randomly last night: http://open.cdash.org/viewTest.php?onlyfailedbuildid=3025432 Both start with the output: Internal cmake changing into directory:

[cmake-developers] [CMake 0014400]: VS2012 no longer install unconditionally after INSTALL is set default startup project

2013-09-12 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14400 == Reported By:Xuefer Assigned To:

[cmake-developers] [CMake 0014401]: CMake incorrectly passes C/CXX flags to assembler

2013-09-12 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14401 == Reported By:Pawel Defee Assigned To:

Re: [cmake-developers] CMake 2.8.12-rc3 Release.

2013-09-12 Thread James Bigler
I have a couple of issues with this release. 1. file(APPEND ${myfile} string string2; string3) This generates an error at the ';' character, which never did before. So far as I understand, a ';' character should still be legal here. Please correct me if I'm wrong. 2. One of

Re: [cmake-developers] [CMake] CMake 2.8.12-rc3 Release.

2013-09-12 Thread Brad King
On 09/12/2013 01:27 PM, James Bigler wrote: 1. file(APPEND ${myfile} string string2; string3) This generates an error at the ';' character, which never did before. So far as I understand, a ';' character should still be legal here. Please correct me if I'm wrong. It

Re: [cmake-developers] [CMake] CMake 2.8.12-rc3 Release.

2013-09-12 Thread James Bigler
On Thu, Sep 12, 2013 at 12:10 PM, Brad King brad.k...@kitware.com wrote: On 09/12/2013 01:27 PM, James Bigler wrote: 1. file(APPEND ${myfile} string string2; string3) This generates an error at the ';' character, which never did before. So far as I understand, a ';'

[cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread James Bigler
In 2.8.12 and 2.8.11.2 I noticed the following problem for VS 2012 builds. VS 2010 builds are fine. Also CMake 2.8.10.1 works just fine. VS 2012 doesn't link the objects into a library. It fails to run the link command at all. I'm trying to figure out why. I'm comparing the differences

Re: [cmake-developers] CMake 2.8.12-rc3 Release.

2013-09-12 Thread Rolf Eike Beer
Am Dienstag, 10. September 2013, 16:08:43 schrieb Robert Maynard: The CMake 2.8.12 release candidate stream continues! This is the last RC unless a critical, must-fix issue is found. You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Does bug 14398 count as

Re: [cmake-developers] CMake 2.8.12-rc3 Release.

2013-09-12 Thread Brad King
On 09/12/2013 03:20 PM, Rolf Eike Beer wrote: Am Dienstag, 10. September 2013, 16:08:43 schrieb Robert Maynard: The CMake 2.8.12 release candidate stream continues! This is the last RC unless a critical, must-fix issue is found. You can find the source and binaries here:

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread Brad King
On 09/12/2013 03:08 PM, James Bigler wrote: In 2.8.12 and 2.8.11.2 I noticed the following problem for VS 2012 builds. VS 2010 builds are fine. Also CMake 2.8.10.1 works just fine. VS 2012 doesn't link the objects into a library. [snip] Broken project: LinkObjects

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread James Bigler
On Thu, Sep 12, 2013 at 1:32 PM, Brad King brad.k...@kitware.com wrote: On 09/12/2013 03:08 PM, James Bigler wrote: In 2.8.12 and 2.8.11.2 I noticed the following problem for VS 2012 builds. VS 2010 builds are fine. Also CMake 2.8.10.1 works just fine. VS 2012 doesn't link the objects

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread James Bigler
On Thu, Sep 12, 2013 at 3:07 PM, Brad King brad.k...@kitware.com wrote: On 09/12/2013 04:57 PM, James Bigler wrote: This seems kind of confusing when the default for all the other VS generators is to link in the output of the custom command. Does that not seem like a problem? The goal

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread James Bigler
On Thu, Sep 12, 2013 at 3:28 PM, James Bigler jamesbig...@gmail.com wrote: On Thu, Sep 12, 2013 at 3:07 PM, Brad King brad.k...@kitware.com wrote: On 09/12/2013 04:57 PM, James Bigler wrote: This seems kind of confusing when the default for all the other VS generators is to link in the

[cmake-developers] [CMake 0014402]: Replace Visual Studio 11 by Visual Studio 2012 in cmake-gui

2013-09-12 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14402 == Reported By:Cedric Perthuis Assigned To:

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread Brad King
On 09/12/2013 04:57 PM, James Bigler wrote: This seems kind of confusing when the default for all the other VS generators is to link in the output of the custom command. Does that not seem like a problem? The goal is to link all .obj files listed in the target exactly once. According to

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread James Bigler
On Thu, Sep 12, 2013 at 2:49 PM, Brad King brad.k...@kitware.com wrote: On 09/12/2013 04:45 PM, James Bigler wrote: I don't actually add the object file to the build, because VS would link in the output of the custom command That's the exact problem the change I linked fixes. You should

Re: [cmake-developers] Linking projects with no C or CPP files

2013-09-12 Thread Brad King
On 09/12/2013 04:45 PM, James Bigler wrote: I don't actually add the object file to the build, because VS would link in the output of the custom command That's the exact problem the change I linked fixes. You should add the object if you want it linked. -Brad -- Powered by www.kitware.com

[cmake-developers] [CMake 0014403]: Add an option to specify Visual Studio solution name

2013-09-12 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14403 == Reported By:Cedric Perthuis Assigned To:

[cmake-developers] [CMake 0014404]: custom build rule for files in visual studio project

2013-09-12 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14404 == Reported By:Cedric Perthuis Assigned To:

Re: [cmake-developers] [CMake 0014403]: Add an option to specify Visual Studio solution name

2013-09-12 Thread J Decker
the project name is the (last? first?) project( ${project_name} ) name. On Thu, Sep 12, 2013 at 5:36 PM, Mantis Bug Tracker man...@public.kitware.com wrote: The following issue has been SUBMITTED. ==