Copying files in devel folder - CMakeLists.txt
Hi
My application requires a configuration file and a resource folder placed in the same directory as the executable. Those are located at : ~/workspace/src/project/cfg/
. I want to copy this file and this directory at ~/workspace/devel/lib/project/
, where my executable is located.
What can I add to my CMakeLists.txt to achieve that? I have tried using ${CATKIN_PACKAGE_BIN_DESTINATION}
, but it creates a lib
subdirectory in build
.
Thank you