Re: [cmake-developers] Better Eclipse CDT support

2011-04-22 Thread Oliver Buchtala
Am 20.04.2011 22:09, schrieb Alexander Neundorf: On Wednesday 20 April 2011, Oliver Buchtala wrote: Hi Alex, ... What would you expect there ? Some structure that gives me acces to the sources of the targets. I suppose, you try to achieve this with sub-projects, but it does not work

[CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Rosen Diankov
Hi all, We've recently started generating (debian) packages with CPack and discovered that handling library dependencies for particular distributions was not as smooth as it can be. The *_DEPENDS string just gets copied over to the final package so it puts all the burden on the user side to

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Rolf Eike Beer
We've recently started generating (debian) packages with CPack and discovered that handling library dependencies for particular distributions was not as smooth as it can be. The *_DEPENDS string just gets copied over to the final package so it puts all the burden on the user side to manage

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Eric Noulard
2011/4/22 Rosen Diankov rosen.dian...@gmail.com: Hi all, We've recently started generating (debian) packages with CPack and discovered that handling library dependencies for particular distributions was not as smooth as it can be. The *_DEPENDS string just gets copied over to the final

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Eric Noulard
2011/4/22 Rolf Eike Beer e...@sf-mail.de: We've recently started generating (debian) packages with CPack and discovered that handling library dependencies for particular distributions was not as smooth as it can be. The *_DEPENDS string just gets copied over to the final package so it puts all

Re: [CMake] OS X Framework and their name

2011-04-22 Thread Marco Antognini
Hi again, I assume this is kind of tricky seen the number of answer. hehe Just a quick summary of my situation and what I want to achieve : Currently I can produce 'sfml-system.framework' for debug and release configuration. I use something like this : # add the install rule # if Mac

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Rosen Diankov
Hi Guys, You are right about shlibdeps, but this is not the whole story. Debian source packages required build dependencies to be preinstalled before cmake even runs. This tells each distribution what it needs so that cmake can find it with find_package. Afterwards, it isn't necessary to

[CMake] Dynamic linking doesn't work after install

2011-04-22 Thread David Doria
I have created an executable like this: add_executable(ImageCompleter ${AppSources}) target_link_libraries(ImageCompleter ${LibrariesAlwaysUsed}) INSTALL( TARGETS ImageCompleter RUNTIME DESTINATION ${INSTALL_DIR} ) When I run the one that is created with 'make', it works fine.

Re: [CMake] Dynamic linking doesn't work after install

2011-04-22 Thread Marcus D. Hanwell
On Fri, Apr 22, 2011 at 9:48 AM, David Doria daviddo...@gmail.com wrote: I have created an executable like this:  add_executable(ImageCompleter ${AppSources})  target_link_libraries(ImageCompleter ${LibrariesAlwaysUsed})  INSTALL( TARGETS ImageCompleter    RUNTIME DESTINATION ${INSTALL_DIR}

Re: [CMake] Dynamic linking doesn't work after install

2011-04-22 Thread David Doria
I think the CMake page on RPATHs might be what you are looking for. http://www.cmake.org/Wiki/CMake_RPATH_handling Marcus Yea I read that, but I didn't really follow/see how to fix this problem. Surely there is a just copy the executable option? David

[CMake] Release of new Debian Source Package Generator

2011-04-22 Thread Rosen Diankov
Hi all, We just finished a new debian source package generator script for cmake: https://openrave.svn.sourceforge.net/svnroot/openrave/trunk/modules-cmake/DebSourcePPA.cmake This is based on the initial UploadPPA.cmake file ( http://purplekarrot.net/blog/dputCMake.html ) by Daniel Pfeifer,

Re: [CMake] Dynamic linking doesn't work after install

2011-04-22 Thread Marcus D. Hanwell
On Fri, Apr 22, 2011 at 9:57 AM, David Doria daviddo...@gmail.com wrote: I think the CMake page on RPATHs might be what you are looking for. http://www.cmake.org/Wiki/CMake_RPATH_handling Yea I read that, but I didn't really follow/see how to fix this problem. Surely there is a just copy the

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Eric Noulard
2011/4/22 Rosen Diankov rosen.dian...@gmail.com: Hi Guys, You are right about shlibdeps, but this is not the whole story. Debian source packages required build dependencies to be preinstalled before cmake even runs. This tells each distribution what it needs so that cmake can find it with

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Rosen Diankov
Hi Eric, Before I start running things, basically the script sets CPACK_DEBIAN_PACKAGE_DEPENDS right? What does this effect have on cpack? Also, If we're generating debian source packages, i'm not sure if it is a good idea to set DISTRO_CODENAME, DISTRO_RELEASE, AND DISTRO_ID inside the cmake

Re: [CMake] Release of new Debian Source Package Generator

2011-04-22 Thread Rosen Diankov
Hi all, There was a problem with the previous script on certain versions of tar. I'm attaching a new file that fixes it. rosen, 2011/4/22 Rosen Diankov rosen.dian...@gmail.com: Hi all, We just finished a new debian source package generator script for cmake:

[CMake] cmake and code signing

2011-04-22 Thread Crni Gorac
Am working on CMake based project, using CPack for building installers. On Windows, I'm using NSIS back-end for CPack. I'm working now on a feature request, consisting of signing the application executable itself, as well as installer exectuable, using my company code signing certificate.

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Eric Noulard
2011/4/22 Rosen Diankov rosen.dian...@gmail.com: Hi Eric, Before I start running things, basically the script sets CPACK_DEBIAN_PACKAGE_DEPENDS right? What does this effect have on cpack? On CPack generic part none but the CPack Debian generator use it when building the binary debian package

Re: [CMake] Better handling of library dependencies for CPack

2011-04-22 Thread Rosen Diankov
Hi Eric, Thanks for the response. In another email to cmake.org, I sent a DebSourcePPA.cmake file that shows what i'm doing to generate deb source packages. Your script sets CPACK_DEBIAN_PACKAGE_DEPENDS to Ubuntu-dep, so I was confused how that adds the correct dependencies... what does a user

Re: [CMake] BundleUtilities (was RPATH on Mac)

2011-04-22 Thread tog
Hi Do we have something similar to BundleUtilities for Frameworks ? Best Regards Guillaume On Wed, Apr 20, 2011 at 9:48 PM, David Cole david.c...@kitware.com wrote: On Wed, Apr 20, 2011 at 11:38 AM, Michael Jackson mike.jack...@bluequartz.net wrote:

[Cmake-commits] CMake branch, master, updated. v2.8.4-393-g97ed208

2011-04-22 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 97ed208db6818400933fd2d5e8b1eb5608a8a5f6 (commit) from