[cmake-developers] [CMake 0015373]: GNUInstallDirs is not correct for ArchLinux

2015-01-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=15373 == Reported By:Dimitri Merejkowsky Assigned To:

[cmake-developers] [CMake 0015376]: CMake creates Xcode project with invalid project settings

2015-01-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=15376 == Reported By:tron_thomas Assigned To:

Re: [cmake-developers] Windows Store generated solution also containing win32 console app?

2015-01-27 Thread Robert Goulet
Ok, make sense. However, the generator is essentially the same for both Win32 and WinRT except for a very few properties. Turns out I was able to make a patch, however I don't know if that's going to be rejected because of the way I did it, but it works really well so far. This allow me to set

Re: [cmake-developers] Setting additional compile flags to .hlsl files?

2015-01-27 Thread Robert Goulet
If the flag would be wrong, compilation would fail. -Original Message- From: Brad King [mailto:brad.k...@kitware.com] Sent: Tuesday, January 27, 2015 12:59 PM To: Robert Goulet Cc: cmake-developers@cmake.org Subject: Re: [cmake-developers] Setting additional compile flags to .hlsl files?

Re: [cmake-developers] Improving Vim support in CMake

2015-01-27 Thread Alex Merry
On Monday 26 January 2015 18:22:41 Ben Boeckel wrote: On Mon, Jan 26, 2015 at 22:39:00 +, Alex Merry wrote: Maybe it's just my colour scheme - I'll have a play with the colour settings when I have some free time. FWIW, I use neverland-darker, a 256-color scheme. Looking at it with an

Re: [cmake-developers] [PATCH] OpenSSL 1.0.2 update

2015-01-27 Thread Rolf Eike Beer
Guillaume Belz wrote: Hi, OpenSSL 1.0.2 was released last week and there is a little change in code, which impact FindOpenSSL.cmake script. The script use a regex to read the version of OpenSLL inside opensslv.h file. In the last commit, this file was modified with a formatting tool and the

Re: [cmake-developers] [PATCH] OpenSSL 1.0.2 update

2015-01-27 Thread Rolf Eike Beer
Rolf Eike Beer wrote: Guillaume Belz wrote: Hi, OpenSSL 1.0.2 was released last week and there is a little change in code, which impact FindOpenSSL.cmake script. The script use a regex to read the version of OpenSLL inside opensslv.h file. In the last commit, this file was

[cmake-developers] [PATCH] OpenSSL 1.0.2 update

2015-01-27 Thread Guillaume Belz
Hi, OpenSSL 1.0.2 was released last week and there is a little change in code, which impact FindOpenSSL.cmake script. The script use a regex to read the version of OpenSLL inside opensslv.h file. In the last commit, this file was modified with a formatting tool and the line 33 was changed from:

[cmake-developers] [CMake 0015374]: Support generator expresssions in add_definitions()

2015-01-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15374 == Reported By:raspy Assigned To:

[cmake-developers] [CMake 0015377]: CMake cannot test compiler features in Turkish locale

2015-01-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=15377 == Reported By:Ongun Kanat Assigned To:

Re: [cmake-developers] Setting additional compile flags to .hlsl files?

2015-01-27 Thread Brad King
On 01/27/2015 01:22 PM, Robert Goulet wrote: If the flag would be wrong, compilation would fail. What if the flag is not added at all because the property is ignored? The test needs to be something that would fail without this change. Thanks, -Brad -- Powered by www.kitware.com Please keep

Re: [cmake-developers] [PATCH][CPack][RPM] multiple path relocation prefixes

2015-01-27 Thread Brad King
On 01/19/2015 09:31 AM, Brad King wrote: Most of the RunCMake tests are for negative tests, but mostly for running cmake. IIUC you need tests that run cpack, right? For that you can use run_cmake_command. See use in the RunCMake.CTestMemcheck test to run ctest:

Re: [cmake-developers] build on multiple cores

2015-01-27 Thread Bill Hoffman
On 1/27/2015 10:52 AM, Deepak Garg wrote: I want to build my cmake code with multiple cores (64). For this I am trying to test the build on 4 cores by typing make -j 4 But still build is done by a single core. The time taken for build by make and make -j 4 is same. Can anyone guide me that

[cmake-developers] Windows Store generated solution also containing win32 console app?

2015-01-27 Thread Robert Goulet
Hi all, When generating VS solution targeting the Windows Store system, it turns out that ALL projects gets to target Windows Store. In the event that the solution also contains a project that is a simple Win32 console application that perform some tasks on files needed by the final Windows

[cmake-developers] build on multiple cores

2015-01-27 Thread Deepak Garg
I want to build my cmake code with multiple cores (64). For this I am trying to test the build on 4 cores by typing make -j 4 But still build is done by a single core. The time taken for build by make and make -j 4 is same. Can anyone guide me that what am I doing wrong? thanks Deepak --

Re: [cmake-developers] build on multiple cores

2015-01-27 Thread Nils Gladitz
On 01/27/2015 04:52 PM, Deepak Garg wrote: I want to build my cmake code with multiple cores (64). For this I am trying to test the build on 4 cores by typing make -j 4 But still build is done by a single core. The time taken for build by make and make -j 4 is same. Can anyone guide me

[cmake-developers] [CMake 0015375]: Please provide a way to evaluate generator expressions on demand

2015-01-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15375 == Reported By:raspy Assigned To:

Re: [cmake-developers] Windows Store generated solution also containing win32 console app?

2015-01-27 Thread Brad King
On 01/27/2015 12:03 PM, Robert Goulet wrote: CMake uses a global variable that essentially means that the generator targets a Windows Store app. This makes it difficult to hack it to control this per project rather than globally. This is a fundamental limitation of the design of CMake, not

Re: [cmake-developers] Setting additional compile flags to .hlsl files?

2015-01-27 Thread Robert Goulet
There you go. Let me know if it's good now. -Original Message- From: Brad King [mailto:brad.k...@kitware.com] Sent: Monday, January 26, 2015 3:09 PM To: Robert Goulet Cc: cmake-developers@cmake.org Subject: Re: [cmake-developers] Setting additional compile flags to .hlsl files? On

Re: [cmake-developers] Setting additional compile flags to .hlsl files?

2015-01-27 Thread Brad King
On 01/27/2015 12:47 PM, Robert Goulet wrote: There you go. Let me know if it's good now. Thanks. I've committed the patch and merged for testing: VS: Add source file property to set extra hlsl shader flags http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6b9bd827 In the test I see: