[CMake] Installing Python Modules with CMake

2011-01-03 Thread Todd Gamblin
Is there some standard way in CMake to get a project-local install destination for python libraries, e.g.: ${CMAKE_INSTALL_PREFIX}/lib/python2.6/site-packages Is this something find modules typically provide? I can construct this name easily enough myself, but it involves querying the

[CMake] Finding Python Modules with CMake

2011-01-03 Thread Todd Gamblin
Is there a way in CMake, once I find the python interpreter, to query for the availability of a particular module? e.g. say I want to make sure that the host's python installation has PyQt4, or numy, or something like that. Do I have to manually run the interpreter, try to import it, and

Re: [CMake] Sign a deb file builded by cpack

2011-01-03 Thread Paolo Zaffino
Thank you Eric...I'll use dpkg-sig. Please let me know when the patch will be introduced. Regards On 02/01/2011 13:06, Eric Noulard wrote: 2011/1/2 Paolo Zaffinop.zaff...@yahoo.it: Dear all, first of all my best wishes at all for an happy new year. Do anyone know if there is a way to sign a

Re: [CMake] Sign a deb file builded by cpack

2011-01-03 Thread Eric Noulard
2011/1/3 Paolo Zaffino p.zaff...@yahoo.it: Thank you Eric...I'll use dpkg-sig. Please let me know when the patch will be introduced. To be more clear: Adding this feature is not currently on my CMake TODO list. My previous remark was an invitation for YOU (or anyone else) to provide a patch.

Re: [CMake] problem w/ find_package_ makefile does not always compile

2011-01-03 Thread Nizar Khalifa Sallem
At Sun, 2 Jan 2011 22:15:56 +0100, ny wrote: ** Apologies for double-posting my earlier message got truncated ** greetings! I spent enough time trying to make the software work, so I'd be happy to get some feedback:: I built research code written in (templated) c++, size is

[CMake] how to submit customized test report

2011-01-03 Thread girish hilage
Hi,    I have a query about submission of customized test report which I had posted as part of some other post to the mailing list.    For convenience I am posting only this specific query again.    ctest_submit() line in my script.cmake was as follows :    ctest_submit(FILES

Re: [CMake] Installing Python Modules with CMake

2011-01-03 Thread Michael Wild
On 01/03/2011 09:11 AM, Todd Gamblin wrote: Is there some standard way in CMake to get a project-local install destination for python libraries, e.g.: ${CMAKE_INSTALL_PREFIX}/lib/python2.6/site-packages Is this something find modules typically provide? I can construct this name

Re: [CMake] Finding Python Modules with CMake

2011-01-03 Thread Michael Wild
On 01/03/2011 09:17 AM, Todd Gamblin wrote: Is there a way in CMake, once I find the python interpreter, to query for the availability of a particular module? e.g. say I want to make sure that the host's python installation has PyQt4, or numy, or something like that. Do I have to manually

Re: [CMake] problem w/ find_package_ makefile does not always compile

2011-01-03 Thread ny
Thank you so much! Nikos Yiotis Chat Skype: nyiotis Contact Me [image: Linkedin]http://my.wisestamp.com/link?u=ws7c27w2vnrx4d2bsite=www.linkedin.com/in/yiotis On Mon, Jan 3, 2011 at 9:57 AM, Nizar Khalifa Sallem nksal...@laas.frwrote: At Sun, 2 Jan 2011 22:15:56 +0100, ny wrote: **

Re: [CMake] how to submit customized test report

2011-01-03 Thread David Cole
What is the contents of path_to_my_customizedTestReport.xml? CDash only parses/recognizes the formats that ctest sends it. Is your file a replacement for Test.xml? Or do you mean to send additional data beyond what is found in Test.xml? Have you looked at the examples and schema found here?

[CMake] Chasing up: XCode 3.2.4 and CMake 2.8.2, setting GCC version to 4.0

2011-01-03 Thread John Clayton
Hi All,i'm still having problems getting theCMAKE_XCODE_ATTRIBUTE_GCC_VERSION flag to properly force the compiler version I want to use for my project.I'm using XCode 3.2.5, on a Mac 10.6.3 machine - trying to target a Max OS X Tiger 10.4u build. I get compiler errors because the gcc-4.2 compiler

Re: [CMake] how to submit customized test report

2011-01-03 Thread girish hilage
:    /home/girish/project/trunk/Testing/20110103-1027/    What I would like to know is, if there is any 'CTEST_' variable which would give me path of the Test.xml file that is generated by 'ctest'?    Or is there any variable which will give me 'Experimental tag' which is shown in the output (Use

Re: [CMake] Finding Python Modules with CMake

2011-01-03 Thread Mark Moll
On Jan 3, 2011, at 2:17 AM, Todd Gamblin wrote: Is there a way in CMake, once I find the python interpreter, to query for the availability of a particular module? e.g. say I want to make sure that the host's python installation has PyQt4, or numy, or something like that. Do I have to

[CMake] Help building static libs w/cmake 2.8 and llvm/clang on Windows

2011-01-03 Thread Michael Maul
Build is eclipse-cdt/nmake on windows 7 C:\Program Files (x86)\CMake 2.8\bin\cmake.exe -E cmake_link_script CMakeFiles\MathFunctions.dir\link.txt --verbose=yes CMAKE_AR-NOTFOUND cr MathFunctions.lib CMakeFiles/MathFunctions.dir/mysqrt.c.ob Error running link command: The system cannot

[CMake] How to find the path to the currently include() or find_package file()

2011-01-03 Thread John McGehee
I am using CMake 2.8 on Linux and Windows. When I include() or find_package() a .cmake file, is there a variable that I can use within the included .cmake file that will tell me its path? For example, # In CMakeLists.txt include(somePath/foo.cmake) Within somePath/foo.cmake, I want to

Re: [CMake] How to find the path to the currently include() or find_package file()

2011-01-03 Thread Michael Hertling
On 01/04/2011 05:47 AM, John McGehee wrote: I am using CMake 2.8 on Linux and Windows. When I include() or find_package() a .cmake file, is there a variable that I can use within the included .cmake file that will tell me its path? For example, # In CMakeLists.txt

Re: [CMake] How to find the path to the currently include() or find_package file()

2011-01-03 Thread Michael Hertling
On 01/04/2011 07:41 AM, Michael Hertling wrote: On 01/04/2011 05:47 AM, John McGehee wrote: I am using CMake 2.8 on Linux and Windows. When I include() or find_package() a .cmake file, is there a variable that I can use within the included .cmake file that will tell me its path? For

Re: [CMake] Installing Python Modules with CMake

2011-01-03 Thread Michael Wild
On 01/03/2011 06:23 PM, Todd Gamblin wrote: On Jan 3, 2011, at 1:34 AM, Michael Wild wrote: On 01/03/2011 09:11 AM, Todd Gamblin wrote: Is there some standard way in CMake to get a project-local install destination for python libraries, e.g.:

[Cmake-commits] CMake branch, next, updated. v2.8.3-1138-gcd1010a

2011-01-03 Thread Ben Boeckel
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 cd1010a562140632b542d6dea01f929f35900f63 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1141-g046775d

2011-01-03 Thread Ben Boeckel
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 046775df9c04739f6e458b018c25b69d2ac89c65 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1144-gb13c213

2011-01-03 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 b13c21318c7551eb692b338f380bc30011346edc (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1148-g078e351

2011-01-03 Thread Zach Mullen
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 078e35166b13153c17989ee4bc178b1b77fdf357 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-375-ga67fd72

2011-01-03 Thread KWSys Robot
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, master has been updated via a67fd7265978a3d8e0565671da651ddfdc6b6e98 (commit) from

[Cmake-commits] CMake branch, next, updated. v2.8.3-1150-g77dfea4

2011-01-03 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 77dfea4f2e9fd8a11f497a85fc03ce433c6e9deb (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1152-g2a672c1

2011-01-03 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 2a672c1206e6fbe8ef6b3a7998f6a361d1168018 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1154-ge207994

2011-01-03 Thread Bill Hoffman
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 e207994883b65b3ddcfdbfec9c0068f59252d796 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1156-g27920f2

2011-01-03 Thread Zach Mullen
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 27920f2ff7f657fb01e0b9c7164e95c1e982b643 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-376-gc59ed29

2011-01-03 Thread KWSys Robot
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, master has been updated via c59ed2955294d6b8fe25926c95711f794284354f (commit) from