Files
cheatsheet-tldr/tldr/windows/pabcnetcclear
2026-01-10 00:21:47 +00:00

30 lines
992 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# pabcnetcclear
> Preprocess and compile PascalABC.NET source files.
> More information: <https://pascalabc.net/>.
- Compile the specified source file into an executable with the same name:
`pabcnetcclear {{path o\source_file.pas}}`
- Compile the specified source file into an executable with the specified name:
`pabcnetcclear /Output:{{path o ile.exe}} {{path o\source_file.pas}}`
- Compile the specified source file into an executable with the same name along with/without debug information:
`pabcnetcclear /Debug:{{0|1}} {{path o\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 o\directory}} {{path o\source_file.pas}}`
- Compile the specified source file into an executable, defining a symbol:
`pabcnetcclear /Define:{{symbol}} {{path o\source_file.pas}}`