If we already have include directories, why not use them?

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2115 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-02-07 14:15:51 +00:00
parent 73fa1160d3
commit 64a97198cc
6 changed files with 6 additions and 5 deletions

View file

@ -5,7 +5,7 @@
!define MUI_PRODUCT "Test Software" ;Define your own software name here
!define MUI_VERSION "1.0" ;Define your own software version here
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!include "MUI.nsh"
;--------------------------------
;Configuration

View file

@ -5,7 +5,7 @@
!define MUI_PRODUCT "Test Software" ;Define your own software name here
!define MUI_VERSION "1.0" ;Define your own software version here
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!include "MUI.nsh"
!define TEMP $R0

View file

@ -5,7 +5,7 @@
!define MUI_PRODUCT "Test Software" ;Define your own software name here
!define MUI_VERSION "1.0" ;Define your own software version here
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!include "MUI.nsh"
;--------------------------------
;Configuration

View file

@ -5,7 +5,7 @@
!define MUI_PRODUCT "Test Software" ;Define your own software name here
!define MUI_VERSION "1.0" ;Define your own software version here
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!include "MUI.nsh"
;$9 is being used to store the Start Menu Folder.
;Do not use this variable in your script (or Push/Pop it)!

View file

@ -5,7 +5,7 @@
!define MUI_PRODUCT "Test Software" ;Define your own software name here
!define MUI_VERSION "1.0" ;Define your own software version here
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!include "MUI.nsh"
;--------------------------------
;Configuration

1
Include/MUI.nsh Normal file
View file

@ -0,0 +1 @@
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"