tldr/pages/windows/pabcnetcclear.md

25 lines
898 B
Markdown
Raw Normal View History

2021-11-14 19:10:47 +00:00
# pabcnetcclear
> Preprocess and compile PascalABC.NET source files.
> More information: <http://pascalabc.net>.
- Compile the specified source file into an executable with the same name:
2021-11-14 19:10:47 +00:00
`pabcnetcclear {{path/to/source_file.pas}}`
2021-11-14 19:10:47 +00:00
- Compile the specified source file into an executable with the specified name:
2022-01-02 20:30:53 +00:00
`pabcnetcclear /Output:{{path/to/file.exe}} {{path/to/source_file.pas}}`
2022-01-02 20:30:53 +00:00
- Compile the specified source file into an executable with the same name along with/without debug information:
2021-11-14 19:10:47 +00:00
`pabcnetcclear /Debug:{{0|1}} {{path/to/source_file.pas}}`
2021-11-14 19:10:47 +00:00
- Allow units to be searched in the specified path while compiling the source file into an executable with the same name:
2021-11-14 19:10:47 +00:00
`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/source_file.pas}}`
2022-01-02 20:30:53 +00:00
- Compile the specified source file into an executable, defining a symbol:
2022-01-02 20:30:53 +00:00
`pabcnetcclear /Define:{{symbol}} {{path/to/source_file.pas}}`