ho visto che posso usare questo comando per copiare una directory con cmake:copia CMake tutti i file con estensione data alla directory di output
file(COPY "myDir" DESTINATION "myDestination")
(da this post)
Il mio problema è che non voglio copiare tutto il myDir
, ma solo i file .h che ci sono. Ho provato con
file(COPY "myDir/*.h" DESTINATION "myDestination")
ma ottengo il seguente errore:
CMake Error at CMakeLists.txt:23 (file):
file COPY cannot find
"/full/path/to/myDIR/*.h".
Come posso filtrare i file che voglio copiare una cartella di destinazione?