mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-20 14:40:25 +00:00
f5f627affb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@18849 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
686 B
NSIS
33 lines
686 B
NSIS
;LyX Windows Installer
|
|
;User Settings
|
|
|
|
;Uncomment the right settting for your build environment
|
|
;BUILD_MSVC = Microsoft Visual C++ 2005
|
|
;BUILD_MINGW = MinGW/MSYS
|
|
|
|
!define BUILD_MSVC
|
|
;!define BUILD_MINGW
|
|
|
|
;Location of LyX files and dependencies
|
|
|
|
!ifdef BUILD_MSVC
|
|
|
|
;Settings for MSVC build
|
|
|
|
!define FILES_LYX "..\..\..\..\build-msvc"
|
|
!define FILES_DEPS "..\..\..\..\lyx-windows-deps-msvc"
|
|
|
|
!else
|
|
|
|
;Settings for MinGW build
|
|
|
|
!define FILES_LYX "..\..\..\..\build\installprefix"
|
|
!define FILES_DEPS "..\..\..\..\..\..\local"
|
|
!define FILES_MINGW "..\..\..\..\..\..\mingw"
|
|
|
|
!endif
|
|
|
|
;Location of Python 2.5
|
|
|
|
!define FILES_PYTHON "C:\Python25"
|