Re: [CMake] INSTALLing a directory

2006-06-26 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philippe Poilbarbe wrote: > Benjamin THYREAU a écrit : >> Hi, >> i want to copy a whole recursive directory of runtime files, during the >> INSTALL phase. >> I use FILE(GLOB_RECURSE to catch the files, but then, it loses the >> subdirectory structure

Re: [CMake] INSTALLing a directory

2006-06-26 Thread Philippe Poilbarbe
Benjamin THYREAU a écrit : Hi, i want to copy a whole recursive directory of runtime files, during the INSTALL phase. I use FILE(GLOB_RECURSE to catch the files, but then, it loses the subdirectory structure. (ie. python/__init__.py and python/test/something.py got both INSTALLed on the same D

[CMake] INSTALLing a directory

2006-06-26 Thread Benjamin THYREAU
Hi, i want to copy a whole recursive directory of runtime files, during the INSTALL phase. I use FILE(GLOB_RECURSE to catch the files, but then, it loses the subdirectory structure. (ie. python/__init__.py and python/test/something.py got both INSTALLed on the same DESTINATION directory..) Did a