Re: [CMake] copy on install

2010-02-04 Thread Alan W. Irwin
On 2010-02-04 22:44-0600 Tim St. Clair wrote: On Thu, Feb 4, 2010 at 6:14 PM, Alan W. Irwin wrote: Why not simply use install(FILES ... PERMISSIONS RENAME ...  )? You would have to use the target property LOCATION to find the (cross-platform) filename associated with the target, and you w

Re: [CMake] copy on install

2010-02-04 Thread Tim St. Clair
Inline.. Re: Alan On Thu, Feb 4, 2010 at 6:14 PM, Alan W. Irwin wrote: > On 2010-02-04 23:38+0100 Eric Noulard wrote: > >> 2010/2/4 Tim St. Clair : >>> >>> Is there a clean way to copy the install target e.g. >>> >>> install (TARGETS foo DESTINATION bin) >>> >>> ~ install(TARGETS foo DESTINATIO

Re: [CMake] copy on install

2010-02-04 Thread Alan W. Irwin
On 2010-02-04 23:38+0100 Eric Noulard wrote: 2010/2/4 Tim St. Clair : Is there a clean way to copy the install target e.g. install (TARGETS foo DESTINATION bin) ~ install(TARGETS foo DESTINATION loc2 RENAME foo_bar) <-doesn't exist. I basically need to install the same target to *multiple* l

Re: [CMake] copy on install

2010-02-04 Thread Eric Noulard
2010/2/4 Tim St. Clair : > Is there a clean way to copy the install target e.g. > > install (TARGETS foo DESTINATION bin) > > ~ install(TARGETS foo DESTINATION loc2 RENAME foo_bar) <-doesn't exist. > > I basically need to install the same target to *multiple* locations > with different names. I th

Re: [CMake] What is a good way to exclude default library locations from install-tree rpaths?

2010-02-04 Thread Alan W. Irwin
Hi Alex: On 2010-02-03 21:47+0100 Alexander Neundorf wrote: On Tuesday 02 February 2010, Alan W. Irwin wrote: ... So to summarize this, I plan to filter all the many INSTALL_RPATH target properties I set in various parts of our build system for our applications and libraries using the CMAKE_PL

[CMake] copy on install

2010-02-04 Thread Tim St. Clair
Is there a clean way to copy the install target e.g. install (TARGETS foo DESTINATION bin) ~ install(TARGETS foo DESTINATION loc2 RENAME foo_bar) <-doesn't exist. I basically need to install the same target to *multiple* locations with different names. -- Cheers, Timothy St. Clair

Re: [CMake] CMake Code for Deploying Qt Plugins for Image Formats

2010-02-04 Thread Clinton Stimpson
http://cmake.org/Wiki/BundleUtilitiesExample Clint On Thursday 04 February 2010 10:00:32 am Michael Jackson wrote: > Are there any examples or does anyone have any CMake code for copying > Qt plugins for the various image formats that come with a Qt > installation. I could probably hack somethin

[CMake] CMake Code for Deploying Qt Plugins for Image Formats

2010-02-04 Thread Michael Jackson
Are there any examples or does anyone have any CMake code for copying Qt plugins for the various image formats that come with a Qt installation. I could probably hack something together similar to what I have for the main QtCore and QtGui libraries, but existing code is always better, and m

[CMake] C++/CLI projects

2010-02-04 Thread Tim St. Clair
Folks - Is there a way to create Managed C++ project files and specify all the properties? I've been googling but I haven't found much, if needed I will resort to include_external_msproject(). -- Cheers, Timothy St. Clair ___ Powered by www.kitwar

[CMake] How only build a subproject with CPACK

2010-02-04 Thread normanraedke
Hello, i will try to build a package instead a subproject of a cmake project. There is only a CPackConfig.cmake file in the top level of the cmake project which build a package with all files. How can i build only a package from a subproject of the top level project. Best regards Norman Rädke