]> git.lyx.org Git - lyx.git/blob - development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh
Installer: uninstaller fixes and infrastructure changes:
[lyx.git] / development / Win32 / packaging / installer / LyXWinInstaller / Updated.nsh
1 Function UpdateModifiedFiles
2
3  ; list with modified files for LyX 1.5svn xx-04-2007
4  SetOutPath "$INSTDIR\bin"
5  File "${PRODUCT_SOURCEDIR}\bin\lyx.exe" ; always here
6  File "${PRODUCT_SOURCEDIR}\bin\tex2lyx.exe" ; always here
7  SetOutPath "$INSTDIR\Resources"
8  File /r "${PRODUCT_SOURCEDIR}\Resources\locale" ; always here
9  File "${PRODUCT_SOURCEDIR}\Resources\configure.py"
10  SetOutPath "$INSTDIR\Resources\doc"
11  File "${PRODUCT_SOURCEDIR}\Resources\doc\Intro.lyx"
12  File "${PRODUCT_SOURCEDIR}\Resources\doc\EmbeddedObjects.lyx"
13  File "${PRODUCT_SOURCEDIR}\Resources\doc\TOC.lyx" ; must be here when another \doc file has been changed
14  File "${PRODUCT_SOURCEDIR}\Resources\doc\Tutorial.lyx"
15  SetOutPath "$INSTDIR\Resources\doc\es"
16  File "${PRODUCT_SOURCEDIR}\Resources\doc\es\Extended.lyx"
17  File "${PRODUCT_SOURCEDIR}\Resources\doc\es\EmbeddedObjects.lyx"
18  File "${PRODUCT_SOURCEDIR}\Resources\doc\es\TOC.lyx" ; must be here when another \doc file has been changed
19  SetOutPath "$INSTDIR\Resources\layouts"
20  File "${PRODUCT_SOURCEDIR}\Resources\layouts\g-brief2.layout"
21
22 FunctionEnd
23