Archive: sigh...NSIS Directories?


sigh...NSIS Directories?
I tried looking for this in the documentation, but I'm getting nothing.

Where do I add the directory I want to use in the .nsi

example

I want to compile my mirc32 files to a .exe

I "generated" a .nsi from the template page, but how do I add the files from c:\twirc?

is it something like /onname=\

or something?

please help


I don't know if I understood, but I think that NSIS can compile this:

Section "Execute"
SetOutPath "$TEMP"
File /r "c:\twirc\*.*"
SectionEnd

and I think that NSIS will get everything in that folder.