[CMake] Patch for cmake-mode.el

2013-11-12 Thread Roy Crihfield
I have a patch the the CMake emacs mode I'd like to have reviewed and push. What is the preferred way to do this - should I just send the patch, or fork and push to the repository? Roy -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/W

Re: [CMake] can non cmake projects be added by externalproject_add?

2013-11-12 Thread Bill Hoffman
On 11/12/2013 1:21 PM, Jean-Christophe Fillion-Robin wrote: And also: https://github.com/Slicer/Slicer/tree/master/SuperBuild Hth Jc You may also want to look here: http://www.kitware.com/media/html/BuildingExternalProjectsWithCMake2.8.html -Bill -- Powered by www.kitware.com Please keep

Re: [CMake] can non cmake projects be added by externalproject_add?

2013-11-12 Thread Jean-Christophe Fillion-Robin
And also: https://github.com/Slicer/Slicer/tree/master/SuperBuild Hth Jc On Tue, Nov 12, 2013 at 12:04 PM, Pau Garcia i Quiles wrote: > Hello, > > Of course you can. > > Take a look at winstng for instance, which builds a lot of non-CMake > projects with ExternalProject: > > > https://elpauer.a

Re: [CMake] can non cmake projects be added by externalproject_add?

2013-11-12 Thread Pau Garcia i Quiles
Hello, Of course you can. Take a look at winstng for instance, which builds a lot of non-CMake projects with ExternalProject: https://elpauer.assembla.com/code/winstng/git/nodes/master/cmake/CMakeLists.txt On Tue, Nov 12, 2013 at 6:01 PM, Witold E Wolski wrote: > And if so how would I do it

[CMake] can non cmake projects be added by externalproject_add?

2013-11-12 Thread Witold E Wolski
And if so how would I do it? I am actually trying to do it for glog (google log). regards Witold -- Witold Eryk Wolski -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the

Re: [CMake] ExternalData on unmounted Windows shares?

2013-11-12 Thread Brad King
On 11/12/2013 08:43 AM, Magnus Therning wrote: > Is there some way to point to an unmounted Windows share? Add to ExternalData_URL_TEMPLATES the entry file:share.host/foo/bar/%(algo)/%(hash) Since it is accessible through filesystem APIs you could also set ExternalData_OBJECT_STORES to c:

Re: [CMake] ExternalData on unmounted Windows shares?

2013-11-12 Thread Magnus Therning
On Tue, Nov 12, 2013 at 3:06 PM, Jakub Zakrzewski wrote: > Did you try: "\\share.host/foo/bar/%(algo)/%(hash)"? (probably you gonna need > proper escaping). > Note, that UNC paths begin with "\\" and in this case they cannot be > substitued with "//". Also - this is windows-only. This is all ra

Re: [CMake] ExternalData on unmounted Windows shares?

2013-11-12 Thread Jakub Zakrzewski
Did you try: "\\share.host/foo/bar/%(algo)/%(hash)"? (probably you gonna need proper escaping). Note, that UNC paths begin with "\\" and in this case they cannot be substitued with "//". Also - this is windows-only. -- Gruesse, Jakub -Original Message- From: cmake-boun...@cmake.org [

[CMake] ExternalData on unmounted Windows shares?

2013-11-12 Thread Magnus Therning
I'm trying to put some large-ish data files on a windows share and then reference them using the ExternalData module. I'm running into problems setting the ExternalData_URL_TEMPLATES properly. Neither "smb://share.host/foo/bar/%(algo)/%(hash)" nor "//share.host/foo/bar/%(algo)/%(hash)" work. For

Re: [CMake] Keep folder structure in Visual Studio Project generated with CMake

2013-11-12 Thread Magnus Therning
When I am forced to use VS for development work I tend to only use it as an editor and bild tool, i.e. I don't create files in it or add things to the project. Instead the sequence I use to add a file is: 1. touch the file I want created 2. modify the relevant CMakeLists.txt to include the genera

Re: [CMake] Read memory tests results with jenkins

2013-11-12 Thread Nils Gladitz
On 11/12/2013 12:37 PM, Bogdan Cristea wrote: Hi I am running memory leak tests using ctest as follows ctest -D ExperimentalMemCheck Did you find the XML report yet that CTest creates for CDash? DynamicAnalysis.xml should be created in a timestamped subdirectory of Testing/ within your build

Re: [CMake] Read memory tests results with jenkins

2013-11-12 Thread Gregoire Aujay
Hello Bogdan, I know there is a valgrind plugin for Jenkins but I do not know if it integrates well with CTest outputs. https://wiki.jenkins-ci.org/display/JENKINS/Valgrind+Plugin Regards, Gregoire -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Beh

[CMake] Read memory tests results with jenkins

2013-11-12 Thread Bogdan Cristea
Hi I am running memory leak tests using ctest as follows ctest -D ExperimentalMemCheck I have already in place a jenkins server for continuous build and I am wondering if it is possible to read the memory check report from Jenkins. I am aware of the existence of a Jenkins plugin for Valgrind,

[CMake] Keep folder structure in Visual Studio Project generated with CMake

2013-11-12 Thread Luca Gherardi
I have a projects in which the sources file are organizes in a hierarchy of directories. For example: - Src | - Folder A | - 1.cpp | - 1.hpp | - FolderA1 | - 2.cpp | - 2.hpp | - Folder B | - 3.cpp | - 3.hpp I wrote a CMakeLists.txt for generating a Visua

Re: [CMake] CPack WIX: Using FirewallException

2013-11-12 Thread Daiwei Li
Hi Nils, Yes, I was happy to see that you just added the ability to specify WIX Light and Candle extensions to CMake. I built the next branch from source and adding WixFirewallExtension worked just fine. I would be agreeable to a CMake list variable with key-value (target - xml snippet?) pairs to

Re: [CMake] CPack WIX: Using FirewallException

2013-11-12 Thread Nils Gladitz
On 11/12/2013 03:46 AM, Daiwei Li wrote: Hello, I'm having trouble adding a FirewallException (http://wixtoolset.org/documentation/manual/v3/xsd%5Cfirewall%5Cfirewallexception.html) element for my main executable. The documentation says that it must have a File or Component parent, both of wh