mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-27 22:45:52 +00:00
40 lines
719 B
NSIS
40 lines
719 B
NSIS
Name "Rippled"
|
|
|
|
; The file to write
|
|
OutFile "ripple_install.exe"
|
|
|
|
; The default installation directory
|
|
InstallDir "$PROGRAMFILES\Rippled"
|
|
|
|
; Request application privileges for Windows Vista
|
|
RequestExecutionLevel user
|
|
|
|
;--------------------------------
|
|
|
|
; Pages
|
|
|
|
Page directory
|
|
Page instfiles
|
|
|
|
;--------------------------------
|
|
|
|
; The stuff to install
|
|
Section "" ;No components page, name is not important
|
|
|
|
; Set output path to the installation directory.
|
|
SetOutPath $INSTDIR
|
|
|
|
; Put file there
|
|
File ..\Release\rippled.exe
|
|
;File ..\*.dll
|
|
;File "start rippled.bat"
|
|
File rippled.cfg
|
|
File validators.txt
|
|
;File /r /x .git ..\..\nc-client\*.*
|
|
|
|
CreateDirectory $INSTDIR\db
|
|
|
|
|
|
|
|
SectionEnd ; end the section
|