clarity
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4382 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
d3a53325cb
commit
53822ab424
1 changed files with 2 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
|||
|
||||
The compiler maintains a list of defined symbols, which can be defined using !define or the /D command line switch. These defined symbols can be used for conditional compilation (using !ifdef) or for symbol replacement (a simple form of macros). To replace a symbol with its value, use $\{SYMBOL\} (if SYMBOL is not defined, no translation will occur). The translation is first-come-first-served, meaning if you do:
|
||||
|
||||
\c !define symbol1 ${symbol2}
|
||||
\c !define symbol_one ${symbol_two}
|
||||
|
||||
If symbol2 is defined when that line occurs, it will be replaced. Otherwise, any replacing will occur when $\{symbol1\} is referenced.
|
||||
If symbol_two is defined when that line occurs, it will be replaced. Otherwise, any replacing will occur when $\{symbol_one\} is referenced.
|
||||
|
||||
Define/conditional compilation related commands:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue