mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
5402048cea
* INSTALL.Win32: add instructin of building windows bundle installer * development/scons/SConstruct: add bundle and bundle_dir option * development/scons/scons_utils.py: handle bundle building * development/Win32/packaging/installer/lyx.nsi: allow specify bundle .exe name from command line * development/Win32/packaging/installer/settings.user.nsh: allow specify bundle directory from command line * development/Win32/packaging/installer/components/external.nsh: get files from bundle directory * development/Win32/packaging/installer/settings.nsh update miktex version (link needs to be updated as well?) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17081 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
864 B
Plaintext
40 lines
864 B
Plaintext
;LyX Windows Installer
|
|
;User Settings, all these macros can be redefined from command line,
|
|
;using options like /DFilesLyX="..\..\..\..\lyx-install"
|
|
|
|
;Location of LyX files and dependencies
|
|
|
|
!ifdef FilesLyX
|
|
!define FILES_LYX "${FilesLyX}"
|
|
!else
|
|
!define FILES_LYX "..\..\..\..\build-msvc"
|
|
!endif
|
|
|
|
!ifdef FilesDeps
|
|
!define FILES_DEPS "${FilesDeps}"
|
|
!else
|
|
!define FILES_DEPS "..\..\..\..\lyx-windows-deps-msvc-qt4"
|
|
!endif
|
|
|
|
!ifdef FilesBundle
|
|
!define FILES_BUNDLE "${FilesBundle}"
|
|
!else
|
|
!define FILES_BUNDLE "..\..\..\..\lyx-windows-bundle-deps"
|
|
!endif
|
|
|
|
;Location of Windows installation
|
|
|
|
!ifdef FilesWindows
|
|
!define FILES_WINDOWS "${FilesWindows}"
|
|
!else
|
|
!define FILES_WINDOWS "C:\WINDOWS"
|
|
!endif
|
|
|
|
;Location of Python 2.5
|
|
|
|
!ifdef FilesPython
|
|
!define FILES_PYTHON "${FilesPython}"
|
|
!else
|
|
!define FILES_PYTHON "C:\Python25"
|
|
!endif
|