2025-03-14 21:59:59 -06:00
|
|
|
# pabcnetcclear
|
|
|
|
|
|
|
|
|
|
> Preprocess and compile PascalABC.NET source files.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://pascalabc.net/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compile the specified source file into an executable with the same name:
|
|
|
|
|
|
|
|
|
|
`pabcnetcclear {{path\to\source_file.pas}}`
|
|
|
|
|
|
|
|
|
|
- Compile the specified source file into an executable with the specified name:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`pabcnetcclear /Output:{{path\to\file.exe}} {{path\to\source_file.pas}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compile the specified source file into an executable with the same name along with/without debug information:
|
|
|
|
|
|
|
|
|
|
`pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}`
|
|
|
|
|
|
|
|
|
|
- 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\directory}} {{path\to\source_file.pas}}`
|
|
|
|
|
|
|
|
|
|
- Compile the specified source file into an executable, defining a symbol:
|
|
|
|
|
|
|
|
|
|
`pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}`
|