williamsellick
30th November 2005 09:16 UTC
Splitting an nsi script file
Hi,
I am currently working on an installer which has become quite large (script wise: about 1600 lines) I was wondering if there was a way of splitting the nsi into smaller files so I could group the relevant functions together in the separte files.
Thanks,
William
Davion
30th November 2005 10:00 UTC
you can put functions you may use in more than one project,
or in many different versions of your install script without
changing them, into a header file (.nsh) and call them this
way - this can make your script a bit smaller.
greetz Dave
williamsellick
30th November 2005 10:45 UTC
Thanks for the advice, just trying to work through the project splitting up the functions.
Afrow UK
30th November 2005 16:33 UTC
Use !include
-Stu