nsis setup
Hi
can anyone help me add my project to a nsis installer......I am using vb2005 express
I have d/loaded nsis, and it looks very interesting but a bit complicated
I cant figure out where to put my program files....
could you supply a sample script as to how to add a vb project to a nsi script....
I got this example below....
how do I add files to the script .....?....
in this example.....how does it know where to find the file....test.txt..?
as there is no path supplied
any help appreciated.....
This installer script will copy the file "test.txt" to the installation directory
# define the name of the installeroutfile"simple installer.exe"# define the directory to install to, the desktop in this case as specified# by the predefined $DESKTOP variableinstallDir$DESKTOP# default sectionsection# define the output path for this filesetOutPath$INSTDIR# define what to install and place it in the output pathfile test.txtsectionEnd

