[cmake-developers] [CMake 0012574]: package name for the nameless component in DEB should not include the -unspecified extension

2011-11-11 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.itk.org/Bug/view.php?id=12574 == Reported By:kitts_82 Assigned To:

[cmake-developers] PATCH Offending entry when using FindBISON.cmake with bison++

2011-11-11 Thread Ondrej Balaz
Hi, I've just found out that use of FindBISON.cmake shipped with CMake 2.8 on system where bison++ is default bison executable (e.g. Debian Linux) will result in corrupted CMakeCache.txt file and parse error due to Offending entry As FindBISON.cmake logic used to obtain installed bison executable

[cmake-developers] [CMake 0012575]: I'm getting a Link error on Linux when I use CMake 2.8.6 or 2.8.5. If use CMake 2.6.3, with the exact same configuration, the l

2011-11-11 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12575 == Reported By:David Bjornbak Assigned To:

[cmake-developers] [PATCH 0/3] The CMake Ninja generator.

2011-11-11 Thread Peter Collingbourne
Hi, These patches add the Ninja generator to CMake, which I am now proposing for inclusion in mainline. The generator should work with the current 'master' branch of Ninja from: https://github.com/martine/ninja The generator passes the CMake test suite on Linux (Debian testing) and FreeBSD

[cmake-developers] [PATCH 1/3] Add SystemTools::TrimWhitespace function

2011-11-11 Thread Peter Collingbourne
--- Source/kwsys/SystemTools.cxx| 15 +++ Source/kwsys/SystemTools.hxx.in |5 + 2 files changed, 20 insertions(+), 0 deletions(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 1bf19c0..c14eb38 100644 --- a/Source/kwsys/SystemTools.cxx

Re: [CMake] CMake stripping /SUBSYSTEM out of LINK_FLAGS

2011-11-11 Thread Jens Auer
Hi, it reaches the linker. I can't simply add WIN32 to add_executable() because I want debug builds to use the console sub-system and release builds to use the windows subsystem. I have three questions: I don't have a solution in cmake, but I worked around this using code from

Re: [CMake] Issue with check_include_file() and GL/glxproto.h

2011-11-11 Thread GOUJON Alexandre
On 11/11/2011 04:13 AM, Michael Hertling wrote: On 11/10/2011 11:22 PM, Eric Noulard wrote: If this is the case then it is a GL/glxproto.h design mistake not CMake mistake. Absolutely, try to compile the following program by hand; it's the same the CHECK_INCLUDE_FILE() macro tries to compile,

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread Niels Dekker - address until 2014
Update: I think users can work around this issue (#12570, empty property pages in VS10), by having the directory where to build the binaries on a separate drive (different from the drive that has the source files). Please let me know if you think that's not a good idea! Or if it does not work

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread Mateusz Łoskot
Separate drive may not be an option for some/many. I, for instance, don't use partitions, but I use CMakeas as main builder for my projects. So, I feel the pain of reloading, thus It's easier/quicker for me to close solution, rerun CMake, reopen solution. -- Mateusz Łoskot Sent from my mobile

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread Niels Dekker - address until 2014
Update: I think users can work around this issue (#12570, empty property pages in VS10), by having the directory where to build the binaries on a separate drive (different from the drive that has the source files). Mateusz Loskot wrote: Separate drive may not be an option for some/many. I, for

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread John Drescher
In order to work around http://public.kitware.com/Bug/view.php?id=12570 I think it should be sufficient to have a different drive *letter* when specifying where to build the binaries than the drive letter(s) of the path names of the source files. So I guess one might work around this issue by

[CMake] Static Library output problem

2011-11-11 Thread Romain LEGUAY
Hello everyone! First, I need to thank you all the CMake developers for their awesome work!!! I try to build a static and a shared libraries. I set the LIBRARY_OUTPUT_DIRECTORY for each library target like this: set_target_properties(${sharedLib} PROPERTIES LIBRARY_OUTPUT_DIRECTORY

Re: [CMake] Static Library output problem

2011-11-11 Thread Michael Wild
On 11/11/2011 03:18 PM, Romain LEGUAY wrote: Hello everyone! First, I need to thank you all the CMake developers for their awesome work!!! I try to build a static and a shared libraries. I set the LIBRARY_OUTPUT_DIRECTORY for each library target like this:

Re: [CMake] Static Library output problem

2011-11-11 Thread Andreas Pakulat
On 11.11.11 15:18:05, Romain LEGUAY wrote: Hello everyone! First, I need to thank you all the CMake developers for their awesome work!!! I try to build a static and a shared libraries. I set the LIBRARY_OUTPUT_DIRECTORY for each library target like this: See the documentation for the

Re: [CMake] Static Library output problem

2011-11-11 Thread Romain LEGUAY
Ok thanks for your quick answers! It works perfectly now! Why don't we have just one variables for the library? With set_target_properties, we can define for each library the path. Romain Le 11/11/2011 15:38, Andreas Pakulat a écrit : On 11.11.11 15:18:05, Romain LEGUAY wrote: Hello

Re: [CMake] Adding a new language

2011-11-11 Thread Stefan Monnier
According to http://caml.inria.fr/pub/docs/manual-ocaml/manual022.html, it does: -o exec-file Specify the name of the output file produced by the compiler. The default output name is a.out under Unix and camlprog.exe under Windows. If This manpage describes all kinds of uses and in

Re: [CMake] Adding a new language

2011-11-11 Thread Stefan Monnier
I'm trying to use cmake for a project using OCaml, so I'm trying to add support for a new language. Just in case you weren't aware of that. There has been [several] discussions on the ML in the past concerning CMake OCaml support at least this one:

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread Niels Dekker - address until 2014
In order to work around http://public.kitware.com/Bug/view.php?id=12570 I think it should be sufficient to have a different drive *letter* when specifying where to build the binaries than the drive letter(s) of the path names of the source files. John Drescher wrote: You could also probably

Re: [CMake] Visual Studio 10 property pages for single source file gone with CMake 2.8.5 and 2.8.6

2011-11-11 Thread Mateusz Łoskot
On 11 November 2011 13:54, Niels Dekker - address until 2014 niels_dekker_address_until_2...@xs4all.nl wrote: Update: I think users can work around this issue (#12570, empty property pages in VS10), by having the directory where to build the binaries on a separate drive (different from the

Re: [CMake] cdt generator and subclipse?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, Dan Kegel wrote: On Thu, Nov 10, 2011 at 2:32 PM, Dan Kegel d...@kegel.com wrote: http://www.cmake.org/Wiki/Eclipse_CDT4_Generator says the cdt generator should work with subclipse if you set -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE on the commandline when

Re: [CMake] Where are tests located?

2011-11-11 Thread David Cole
On Thu, Nov 10, 2011 at 4:33 PM, EXT-York, Gantry gantry.y...@boeing.com wrote: OK, so if I'm trying to add a test do I just add_executable( run_main.pl IMPORTED ) set_property(    TARGET test_script1    PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/run_main.pl ) add_test( test1

Re: [CMake] Where are tests located?

2011-11-11 Thread David Cole
On Thu, Nov 10, 2011 at 4:41 PM, EXT-York, Gantry gantry.y...@boeing.com wrote: If I'm in a traversed subdirectory, is there a different variable other than ${CMAKE_CURRENT_SOURCE_DIR} that I should be using? This doesn't seem to work. Gantry York Chandler, Arizona -Original

[CMake] Specifying library build path for simulator and device for an iOS target in Xcode

2011-11-11 Thread Daniel Dekkers
Hi, We are building a lib and an example app in Xcode (4.2) targeting iOS (5.0). The top-level CMakeLists.txt recurses into lib and example: PROJECT(Suite) ADD_SUBDIRECTORY(MyLibrary) ADD_SUBDIRECTORY(MyExample) The lib is built in the traditional way… PROJECT(MyLib) … ADD_LIBRARY(

Re: [CMake] Specifying library build path for simulator and device for an iOS target in Xcode

2011-11-11 Thread David Cole
On Fri, Nov 11, 2011 at 11:12 AM, Daniel Dekkers d.dekk...@cthrough.nl wrote: Hi, We are building a lib and an example app in Xcode (4.2) targeting iOS (5.0). The top-level CMakeLists.txt recurses into lib and example: PROJECT(Suite) ADD_SUBDIRECTORY(MyLibrary) ADD_SUBDIRECTORY(MyExample)

[CMake] VS2010 Express generator?

2011-11-11 Thread David Doria
I am using CMake 2.8.6 and am hoping to generate a project for VS2010 Express. Which generator should I use? I tried Visual Studio 10, but when I configure I get all kinds of errors about the compiler not working. I can try to transcribe these if necessary, but I thought there might be an easier

Re: [CMake] Specifying library build path for simulator and device for an iOS target in Xcode

2011-11-11 Thread Daniel Dekkers
Thanks. You saved the day (again). Works perfectly. On Nov 11, 2011, at 5:22 PM, David Cole wrote: On Fri, Nov 11, 2011 at 11:12 AM, Daniel Dekkers d.dekk...@cthrough.nl wrote: Hi, We are building a lib and an example app in Xcode (4.2) targeting iOS (5.0). The top-level CMakeLists.txt

Re: [CMake] VS2010 Express generator?

2011-11-11 Thread David Cole
You just need to install a PlatformSDK to go with VS 2010 Express. Search the mailing list for prior discussions of this fact. On Fri, Nov 11, 2011 at 11:36 AM, David Doria daviddo...@gmail.com wrote: I am using CMake 2.8.6 and am hoping to generate a project for VS2010 Express. Which

Re: [CMake] VS2010 Express generator?

2011-11-11 Thread Mateusz Łoskot
On 11 November 2011 16:36, David Doria daviddo...@gmail.com wrote: I am using CMake 2.8.6 and am hoping to generate a project for VS2010 Express. Which generator should I use? I tried Visual Studio 10, but when I configure I get all kinds of errors about the compiler not working. I can try to

Re: [CMake] VS2010 Express generator?

2011-11-11 Thread Hendrik Sattler
Am Freitag, 11. November 2011, 17:41:34 schrieb David Cole: You just need to install a PlatformSDK to go with VS 2010 Express. Search the mailing list for prior discussions of this fact. Last time I tried, VS10Express included the PlatformSDK. HS -- Powered by www.kitware.com Visit other

Re: [CMake] Adding a new language

2011-11-11 Thread Hendrik Sattler
Am Freitag, 11. November 2011, 15:55:12 schrieb Stefan Monnier: According to http://caml.inria.fr/pub/docs/manual-ocaml/manual022.html, it does: -o exec-file Specify the name of the output file produced by the compiler. The default output name is a.out under Unix and

[CMake] QtCreator generator?

2011-11-11 Thread David Doria
I saw a discussion about this back in March, but I didn't see any conclusions/resolutions. Is there a way to generate a QtCreator project using CMake? I tried the CMake support that was built into QtCreator itself, but it seems very awkward (you couldn't view/set variables, etc). Thanks, David

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Cole
On Fri, Nov 11, 2011 at 1:08 PM, David Doria daviddo...@gmail.com wrote: I saw a discussion about this back in March, but I didn't see any conclusions/resolutions. Is there a way to generate a QtCreator project using CMake? I tried the CMake support that was built into QtCreator itself, but it

Re: [CMake] QtCreator generator?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, David Cole wrote: On Fri, Nov 11, 2011 at 1:08 PM, David Doria daviddo...@gmail.com wrote: I saw a discussion about this back in March, but I didn't see any conclusions/resolutions. Is there a way to generate a QtCreator project using CMake? I tried the CMake

[CMake] CMake + Cygwin + MSVC Toolchain problems

2011-11-11 Thread Robert Dailey
I have been generating for Visual Studio, but I decided to try setting up my Cygwin environment to point to the MSVC tool chain. So far it's worked wonderfully, but one of my targets is failing and I don't understand Makefiles very well so I have no idea what the problem is. Note that I'm doing an

Re: [CMake] CMake + Cygwin + MSVC Toolchain problems

2011-11-11 Thread Robert Dailey
At line 25 in the depend.make file in question, I have this: common/exchange/gdexchsrvcommon/CMakeFiles/gdwincommon.dir/gdcomhelpers.cpp.obj: C:/Program\ Files/Microsoft\ SDKs/Windows/v6.0A/Include/SCardErr.h - Robert Dailey On Fri, Nov 11, 2011 at 1:17 PM, Robert Dailey

Re: [CMake] CMake + Cygwin + MSVC Toolchain problems

2011-11-11 Thread Robert Dailey
Based on this URL: http://cygwin.com/ml/cygwin/2006-07/msg00376.html Seems like this happens because I am using windows-style paths in Cygwin. I don't know how to make it use different paths though. - Robert Dailey On Fri, Nov 11, 2011 at 1:19 PM, Robert Dailey rcdai...@gmail.com

Re: [CMake] Generating for cygwin

2011-11-11 Thread Robert Dailey
Do you have a sample bash script I could look at? I'm not sure what environment variables need to be setup in my Cygwin environment. Thanks! - Robert Dailey On Thu, Nov 10, 2011 at 10:05 PM, Bill Hoffman bill.hoff...@kitware.comwrote: On 11/10/2011 5:14 PM, Robert Dailey wrote: I

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
I think it's true that QtCreator knows how to connect to a CMake build tree generated with the CodeBlocks - Unix Makefiles generator. I tried to use this generator, but I get errors like cmake_c_compiler_env_var is undefined. Shouldn't it find the compiler for the VS2010Express installation?

Re: [CMake] QtCreator generator?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, David Doria wrote: I think it's true that QtCreator knows how to connect to a CMake build tree generated with the CodeBlocks - Unix Makefiles generator. I tried to use this generator, but I get errors like cmake_c_compiler_env_var is undefined. Shouldn't it find

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
On Fri, Nov 11, 2011 at 12:42 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: On Friday 11 November 2011, David Doria wrote: I think it's true that QtCreator knows how to connect to a CMake build tree generated with the CodeBlocks - Unix Makefiles generator. I tried to use this

Re: [CMake] QtCreator generator?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, David Doria wrote: On Fri, Nov 11, 2011 at 12:42 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: On Friday 11 November 2011, David Doria wrote: I think it's true that QtCreator knows how to connect to a CMake build tree generated with the CodeBlocks -

[CMake] How to build ccmake.exe on Windows?

2011-11-11 Thread Robert Dailey
I'm using Cygwin with the MSVC toolchain and I need ccmake.exe. I can't use the one from the Cygwin package manager because it's older than the version I'm using. I'd like to build it myself through Visual Studio like I did with cmake and cmake-gui if possible. Any help? - Robert Dailey

Re: [CMake] How to build ccmake.exe on Windows?

2011-11-11 Thread Robert Dailey
According to the root CMakeLists.txt in cmake, there is no way to do this on Windows. I'll probably have to build it through Cygwin itself, assuming UNIX is truthy when using Cygwin. # Use curses? IF (UNIX) # there is a bug in the Syllable libraries which makes linking ccmake fail, Alex

Re: [CMake] How to build ccmake.exe on Windows?

2011-11-11 Thread John Drescher
On Fri, Nov 11, 2011 at 3:24 PM, Robert Dailey rcdai...@gmail.com wrote: According to the root CMakeLists.txt in cmake, there is no way to do this on Windows. I'll probably have to build it through Cygwin itself, assuming UNIX is truthy when using Cygwin.   # Use curses?   IF (UNIX)     #

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
Ok. one more: how exactly did you run cmake ? From the command line or cmake-gui ? From the CMake-GUI. Which generator did you choose ? It should be the CodeBlocks - NMake Makefiles one. I had chosen CodeBlocks - Unix Makefiles. I just tried again with CodeBlocks - NMake Makefiles, and I

Re: [CMake] cdt generator and subclipse?

2011-11-11 Thread Dan Kegel
On Fri, Nov 11, 2011 at 3:58 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: What did you do ? Can you please explain exactly ? I'd really like to know. I can't explain my previous problem - must have been stupid user error, like being in wrong directory. - Dan -- Powered by

Re: [CMake] How to build ccmake.exe on Windows?

2011-11-11 Thread David Cole
UNIX is ON for cygwin based builds. (However, WIN32 is not ON any longer. It used to be, but the cygwin guys didn't want it that way, so now WIN32 is OFF.) Assuming you are in a directory named CMake which is the CMake source tree, you can do the following to produce a cygwin based CMake (in a

Re: [CMake] CMake + Cygwin + MSVC Toolchain problems

2011-11-11 Thread Bill Hoffman
On 11/11/2011 2:25 PM, Robert Dailey wrote: Based on this URL: http://cygwin.com/ml/cygwin/2006-07/msg00376.html Seems like this happens because I am using windows-style paths in Cygwin. I don't know how to make it use different paths though. It is because the cygwin make is broken. Did you

Re: [CMake] cdt generator and subclipse?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, Dan Kegel wrote: On Fri, Nov 11, 2011 at 3:58 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: What did you do ? Can you please explain exactly ? I'd really like to know. I can't explain my previous problem - must have been stupid user error, like being

Re: [CMake] QtCreator generator?

2011-11-11 Thread Alexander Neundorf
On Friday 11 November 2011, David Doria wrote: Ok. one more: how exactly did you run cmake ? From the command line or cmake-gui ? From the CMake-GUI. Which generator did you choose ? It should be the CodeBlocks - NMake Makefiles one. I had chosen CodeBlocks - Unix Makefiles. I just

Re: [CMake] QtCreator generator?

2011-11-11 Thread Michael Jackson
On Nov 11, 2011, at 4:44 PM, Alexander Neundorf wrote: On Friday 11 November 2011, David Doria wrote: Ok. one more: how exactly did you run cmake ? From the command line or cmake-gui ? From the CMake-GUI. Which generator did you choose ? It should be the CodeBlocks - NMake Makefiles

Re: [CMake] cdt generator and subclipse?

2011-11-11 Thread Dan Kegel
On Fri, Nov 11, 2011 at 9:42 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: So you imported the source project (and the build project), and now svn works for the source project ? Right (I think). The symptom was that the source project would not import. Now it does, reliably. Or does

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
That is the best way I have found to run CMake on Windows when multiple Visual Studios are installed. There is a Command Prompt short cut called Visual Studio Command Prompt that will have all the compiler paths setup for you. What I do is launch that command prompt then issue cmake-gui.exe

[CMake] Workflow of a collaborative project in Visual Studio+CMake

2011-11-11 Thread David Doria
I typically work in KDevelop which has CMake support, so if another developer pushes some new files and changes to the CMakeLists.txt of my project, I simply 'git pull' the project and then click Build and it knows exactly what to do - it runs CMake and then builds the project. However, when

Re: [CMake] QtCreator generator?

2011-11-11 Thread Michael Jackson
There should have been a *.sln file that you open.? ___ Mike JacksonPrincipal Software Engineer BlueQuartz SoftwareDayton, Ohio mike.jack...@bluequartz.net www.bluequartz.net On

Re: [CMake] Workflow of a collaborative project in Visual Studio+CMake

2011-11-11 Thread Michael Jackson
It is worse and better. 1: CMake will generate the VS projects and solutions every time it needs to run. DO NOT EDIT the generated VS projects and solutions. Add the requirements to the CMake files. 2: If you are on VS2007/VS2008 and you do a git pull and then switch to VS and click build a

Re: [CMake] QtCreator generator?

2011-11-11 Thread John Drescher
There should have been a *.sln file that you open.? Not for a Code Blocks -NMake Makefile project. John -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at:

[CMake] Multiple source directory scenario and cdt generator

2011-11-11 Thread Dan Kegel
In http://www.cmake.org/pipermail/cmake/2011-November/047250.html I wrote I can't reorganize the source tree on the developers, so I'm making do by putting the enclosing CMakeLists.txt next to all the projects: toplevel/trunk/CMakeLists.txt which is checked out to toplevel/CMakeLists.txt It

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
On Fri, Nov 11, 2011 at 5:56 PM, John Drescher dresche...@gmail.com wrote: There should have been a *.sln file that you open.? Not for a Code Blocks -NMake Makefile project. John Ok, I guess I am getting my two threads confused. *To use QtCreator* The consensus is to use the Code Blocks -

Re: [CMake] QtCreator generator?

2011-11-11 Thread Christian Ehrlicher
Am Samstag, 12. November 2011, 00:05:20 schrieb David Doria: On Fri, Nov 11, 2011 at 5:56 PM, John Drescher dresche...@gmail.com wrote: There should have been a *.sln file that you open.? Not for a Code Blocks -NMake Makefile project. John Ok, I guess I am getting my two threads

Re: [CMake] QtCreator generator?

2011-11-11 Thread David Doria
*To use QtCreator* The consensus is to use the Code Blocks - NMake Generator. This has generated successfully a .cbp file (Code Block Project, I'm assuming). However, QtCreator seems unaware that this is a project and just opens it as plain text? How do I now open this project in

Re: [CMake] Multiple source directory scenario and cdt generator

2011-11-11 Thread Dan Kegel
On Fri, Nov 11, 2011 at 11:01 PM, Dan Kegel d...@kegel.com wrote: I have no idea how to make that happen inside the cdt generator.  I could kludge it in the shell script that runs cmake, but then it would break whenever the project was updated and cmake rebuilt the project automatically. OK,

[CMake] cmake 2.8.6 On Linux , link error and added headers to ..._EXTERNAL_OBJECTS for executables

2011-11-11 Thread david_bjornbak
I'm getting a Link error on Linux when I use CMake 2.8.6 or 2.8.5. If use CMake 2.6.3, with the exact same configuration, the link works. I did a diff on the build.make from 2.8.6 and 2.6.3 and found when I use cmake 2.8.6 On Linux adding headers to ..._EXTERNAL_OBJECTS for executables

Re: [CMake] QtCreator generator?

2011-11-11 Thread Michael Jackson
But said he was trying to own it in visual studio express. Mike J On Friday, November 11, 2011, John Drescher dresche...@gmail.com wrote: There should have been a *.sln file that you open.? Not for a Code Blocks -NMake Makefile project. John --

[CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY best practice for Windows and Visual Studio

2011-11-11 Thread Mateusz Łoskot
Hi, I have a CMake-based project which builds several shared libraries and executables. There are various run-time dependencies between those shared libraries and executables. On Windows, I use Visual Studio for development, so I have CMake-generated .sln with projects. loaded into the IDE. I

Re: [CMake] Using CTest with a different dashboard

2011-11-11 Thread Michael Hertling
On 11/09/2011 06:06 PM, EXT-York, Gantry wrote: I'm looking for suggestions from someone who has used CTest to report results to a dashboard other than CDash. I'd like to be able to simply type gmake test TESTOPTS=-report then have CTest traverse all the directories and run the defined

[CMake] ifort,icc,icpc: ld: cannot find -lcilkrts

2011-11-11 Thread Ilias Miroslav
Dear experts, our problem is that cmake sets automatically linking libraries for C,C++ and with Intel compilers (Fortran,C,C++) we are getting these problems ( first observed here https://repo.ctcc.no/CDash/viewBuildError.php?buildid=5283 ) : . . . Linking Fortran executable dirac.x

[Cmake-commits] CMake branch, next, updated. v2.8.6-1835-g621055b

2011-11-11 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 621055bbdacc566683ff67967c65cc1da33aed6a (commit) via