Re: [CMake] Custom install target to install only files

2012-05-24 Thread Michael Wild
On 05/24/2012 03:43 PM, vivek goel wrote: > I have a project with 10 binary files. > and I am installing custom 15 bash files using > > install(PROGRAMS > > DESTINATION /bin > ) > > Is there a way to have custom install target like > make install script which

Re: [CMake] Custom install target to install only files

2012-05-24 Thread David Cole
Perhaps consider using the COMPONENTS feature of the install rules. On Thu, May 24, 2012 at 9:43 AM, vivek goel wrote: > I have a project with 10 binary files. > and I am installing custom 15 bash files using > > install(PROGRAMS > > DESTINATION /bin > ) > > Is the

[CMake] Custom install target to install only files

2012-05-24 Thread vivek goel
I have a project with 10 binary files. and I am installing custom 15 bash files using install(PROGRAMS DESTINATION /bin ) Is there a way to have custom install target like make install script which will install only required script files with building source code for