RosBE/RosBE-Windows/RosSourceDir.nsh
Daniel Reimer e8b03200aa Update RosBE Source to 0.3.6.
- Updated: now using GCC 4.1.3 snapshot (20070405)
- Updated: mingw-runtime-3.11 to mingw-runtime-3.12
- Updated: w32api-3.8 to w32api-3.9
- Updated: mingw32-make-3.81-1 to mingw32-make-3.81-2
- Snapshot: Binutils 2.17.50 (20060824) to Binutils 2.17.50 (20070204)
- Updated: NSIS 2.22 to NSIS 2.27.
- New cool Icon by ROSFan.
- Readded buildtime.
- Removed makex for now until the bug is fixed.
(My first commit :-D )

svn path=/trunk/tools/RosBE-Windows/; revision=210
2007-06-05 21:05:34 +00:00

17 lines
646 B
Plaintext

!macro CUSTOM_PAGE_ROSDIRECTORY
PageEx custom
Caption ""
PageCallBacks "RosDir.show" "RosDir.leave"
PageExEnd
Function RosDir.show
!insertmacro MUI_HEADER_TEXT "Select ReactOS Source Location" "Select the directory where the ReactOS sources are located."
!insertmacro MUI_INSTALLOPTIONS_WRITE "RosSourceDir.ini" "Field 2" "State" "$INSTDIR"
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "RosSourceDir.ini"
FunctionEnd
Function RosDir.leave
!insertmacro MUI_INSTALLOPTIONS_READ $REACTOS_SOURCE_DIRECTORY "RosSourceDir.ini" "Field 2" "State"
FunctionEnd
!macroend