[CMake] Using CMake with SWIG and Ruby

2012-04-10 Thread Dev Guy
Hi Guy, with all my searching and reading I've have not been able to find a way to build a Ruby extension using SWIG with CMake. Here is my CMakeLists.txt CMAKE_MINIMUM_REQUIRED(VERSION 2.8) PROJECT(RUBY_WRAPPER) FIND_PACKAGE(SWIG REQUIRED) INCLUDE(${SWIG_USE_FILE}) FIND_PACKAGE(Ruby) INCLUDE_D

Re: [CMake] Running tests only on modified projects....

2012-04-10 Thread Malfettone, Kris
David, Thank you for your response. -Kris -Original Message- From: David Cole [mailto:david.c...@kitware.com] Sent: Tuesday, April 10, 2012 1:28 PM To: Malfettone, Kris Cc: cmake@cmake.org Subject: Re: [CMake] Running tests only on modified projects It is presently not possib

Re: [CMake] CMake 2.8.7 + XCode generator + nasm files

2012-04-10 Thread Alexander Neundorf
On Tuesday 10 April 2012, David Cole wrote: > If you would like to construct a git commit (based on the present > 'master' branch), and then attach the patch produced by: > > git format-patch -1 > > to the issue at http://public.kitware.com/Bug/view.php?id=9126, then > we will consider it for i

Re: [CMake] CMake 2.8.7 + XCode generator + nasm files

2012-04-10 Thread David Cole
If you would like to construct a git commit (based on the present 'master' branch), and then attach the patch produced by: git format-patch -1 to the issue at http://public.kitware.com/Bug/view.php?id=9126, then we will consider it for inclusion in a future CMake release. Seems like the easies

Re: [CMake] Running tests only on modified projects....

2012-04-10 Thread David Cole
It is presently not possible because there is no connection (other than the full path to the executable and the arguments you pass to it) between a test executed by ctest and the build products produced by CMake and the native build system. What is necessary is a way to connect a test and its inpu

Re: [CMake] Running tests only on modified projects....

2012-04-10 Thread Malfettone, Kris
Just checking in if anyone has any ideas for this either yay or nay. It would be useful at least to know that it is impossible. -Kris From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Malfettone, Kris Sent: Tuesday, March 27, 2012 10:11 AM To: cmake@cmake.org Subject:

Re: [CMake] CMake + Ninja

2012-04-10 Thread Malfettone, Kris
Just checking in to see if anyone has any insight into this since I have not heard back a response. -Kris -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Malfettone, Kris Sent: Wednesday, February 22, 2012 6:45 PM To: Peter Collingbourne; C

Re: [CMake] CMake 2.8.7 + XCode generator + nasm files

2012-04-10 Thread Damien Chavarria
Hi all, Nobody has any insigth on this ? Should I give up ? Cheers, Damien. On Fri, Apr 6, 2012 at 9:36 AM, Damien Chavarria wrote: > > Hi all, > > Sorry for reviving what seems like a previously discussed issue, but I've > been unable to find whether a resolution was reached. > > Here is the

Re: [CMake] Multiple Versions of CMake

2012-04-10 Thread Alexander Neundorf
On Tuesday 10 April 2012, Sara Rolfe wrote: > Hello, > > I have been using CMake on a compute cluster with 64-bit nodes running > RHEL 5.7. CMake was not installed on the nodes so I built version > 2.8.4 in my home directory. Recently the cluster nodes were upgraded > from RHEL 5.7 to RHEL 6.2, w

[CMake] Fwd: How to package for Debian with Qt dependencies

2012-04-10 Thread Carlo Nicolini
On Tue, Apr 10, 2012 at 03:01:20PM +0200, Carlo Nicolini wrote: > You say that it's impossible only by using cmake/cpack to create a debian > package that automatically installs all the needed dependencies? > I thought it was possible. Well, of course that's likely possible (via BundleUtilities fi

[CMake] Cray compiler + omp_lib.a

2012-04-10 Thread Nico Schlömer
Hi, I'm trying to compile a mixed Fortran/C++ toolkit with CMake, and there's a small error that keeps things from working at the moment. The problem appears when linking executables, for example when verifying the Fortran/C++ interface (in CMake: INCLUDE(FortranCInterface), FortranCInterface_VERI

Re: [CMake] How to package for Debian with Qt dependencies

2012-04-10 Thread Andreas Mohr
Hi, On Tue, Apr 10, 2012 at 07:01:26AM -0400, cmake-requ...@cmake.org wrote: > Date: Tue, 10 Apr 2012 13:01:23 +0200 > From: Carlo Nicolini > Subject: [CMake] How to package for Debian with Qt dependencies > To: cmake@cmake.org > Message-ID: > > Content-Type: text/plain; charset="utf-8" >

Re: [CMake] How to package for Debian with Qt dependencies

2012-04-10 Thread Andreas Pakulat
On 10.04.12 13:01:23, Carlo Nicolini wrote: > I've started a Qt project with CMake and until now is very successfull but > I'm wondering how to package my program for use with debian with the > correct dependencies > > In the main CMakeLists.txt I have: > > set (CPACK_GENERATOR "DEB") >

[CMake] How to package for Debian with Qt dependencies

2012-04-10 Thread Carlo Nicolini
I've started a Qt project with CMake and until now is very successfull but I'm wondering how to package my program for use with debian with the correct dependencies In the main CMakeLists.txt I have: set (CPACK_GENERATOR "DEB") set (${VERSION} CPACK_DEBIAN_PACKAGE_VERSION)