Talk:Simple tutorials: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
m (fixed spelling) |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
From where you you tell it, obviously: | From where you you tell it, obviously: | ||
File "subfolder\file.ext" | File "subfolder\file.ext" | ||
File \rootfolder\file.ext | File \rootfolder\file.ext | ||
File y:\otherdriver\foo.bar | File y:\otherdriver\foo.bar | ||
(Current directory is the same as | |||
--[[User:Anders|Anders]] 14: | (Current directory is the same as your .nsi unless you tell makensis to not change the dir) | ||
--[[User:Anders|Anders]] 14:22, 12 October 2009 (UTC) | |||
---- | ---- |
Latest revision as of 14:23, 12 October 2009
Took me a while to figure this out: How does NSIS actually get the files?
The line File xxxx means the installer will copy that file. Where does the installer get it while it is compiling? The file has to be present in the same directory as the .nsi while compiling
From where you you tell it, obviously:
File "subfolder\file.ext"
File \rootfolder\file.ext
File y:\otherdriver\foo.bar
(Current directory is the same as your .nsi unless you tell makensis to not change the dir) --Anders 14:22, 12 October 2009 (UTC)