This is my code so far:
Now heres my question:Name "Test1"
;
Page directory
Page instfiles
;
;
InstallDir $PROGRAMFILES\NSIS_Test
;
Section "!TestProgram"
SetOutPath $INSTDIR
File test1.txt
File test2.txt
File test3.txt
;
SectionEnd
;
;
Section /o "Uninstall"
WriteUninstaller $INSTDIR\Uninstal.exe
Delete $INSTDIR\test1.txt
Delete $INSTDIR\test2.txt
RMDir $INSTDIR
SectionEnd
Before I compile how do I set the test1.txt, test2.txt, test3.txt to be included? Because when I compile it says those files are missing, so how do I include them into the script beyond putting in the "File xxx" tag? Can somebody please help me, thanks!