I just want to copy directory (which contains some files) on destination machine during .deb installation at path /opt/myProjectName in Ubuntu 14.04, 64 bit.
Right now I am successfully able to install files on destination machine during .deb installation using CMakeLists.txt file as per below.
INSTALL(FILES myShFile.sh DESTINATION /opt/myProjectName)
But now I want to copy a directory (which contains some files) on destination machine at path /opt/myProjectName.
If anyone has idea about the same then please let me know.
Thanks.