Hi All.
What is the best way to pull all of doxygen's output (a very large and ever-changing number of HTML files spread across a large number of directories, with one parent directory) into an NSIS installer?
I am very familiar with pulling individual, named files into NSIS, but it's not clear to me how to tell it to pull in entire directories and their sub-directory contents.
Thanks,
--Andrew
NSIS + doxygen output? How to package?
3 posts
The File command accepts wildcards, and also has a switch (/r) to find files recursively.
In other words, what you want is...
File /r doxygenOutputDir\*
I can't remember if the top level directory name is preserved this way - but this is easily tested and handled using SetOutPath.
In other words, what you want is...
File /r doxygenOutputDir\*
I can't remember if the top level directory name is preserved this way - but this is easily tested and handled using SetOutPath.
Thanks -- I'll try that.
--Andrew
--Andrew