Better grammar in pabcnetcclear (#7934)

This commit is contained in:
Emily Grace Seville
2022-04-04 22:46:28 +10:00
committed by GitHub
parent 2bf7c9a670
commit 213dab9463

View File

@@ -3,22 +3,22 @@
> Preprocess and compile PascalABC.NET source files.
> More information: <http://pascalabc.net>.
- Compile a given source file into an executable with the same name:
- Compile the specified source file into an executable with the same name:
`pabcnetcclear {{path/to/file.pas}}`
`pabcnetcclear {{path/to/source_file.pas}}`
- Compile a given source file into an executable with the specified name:
- Compile the specified source file into an executable with the specified name:
`pabcnetcclear /Output:{{path/to/file.pas}} {{path/to/file.pas}}`
`pabcnetcclear /Output:{{path/to/file.pas}} {{path/to/source_file.pas}}`
- Compile a given source file into an executable with the same name along with/without debug information:
- Compile the specified source file into an executable with the same name along with/without debug information:
`pabcnetcclear /Debug:{{0|1}} {{path/to/file.pas}}`
`pabcnetcclear /Debug:{{0|1}} {{path/to/source_file.pas}}`
- Allow units to be searched in a path while compiling a given source file into an executable with the same name:
- Allow units to be searched in the specified path while compiling the source file into an executable with the same name:
`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/file.pas}}`
`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/source_file.pas}}`
- Compile a given source file into an executable, defining a symbol:
- Compile the specified source file into an executable, defining a symbol:
`pabcnetcclear /Define:{{symbol}} {{path/to/file.pas}}`
`pabcnetcclear /Define:{{symbol}} {{path/to/source_file.pas}}`