1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/pabcnetcclear.md

25 lines
905 B
Markdown
Raw Normal View History

2021-11-15 05:10:47 +10: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-15 05:10:47 +10:00
`pabcnetcclear {{path\to\source_file.pas}}`
2021-11-15 05:10:47 +10:00
- Compile the specified source file into an executable with the specified name:
2022-01-03 06:30:53 +10:00
`pabcnetcclear /Output:{{path\to\_file.exe}} {{path\to\source_file.pas}}`
2022-01-03 06:30:53 +10:00
- Compile the specified source file into an executable with the same name along with/without debug information:
2021-11-15 05:10:47 +10:00
`pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}`
2021-11-15 05:10:47 +10:00
- Allow units to be searched in the specified path while compiling the source file into an executable with the same name:
2021-11-15 05:10:47 +10:00
`pabcnetcclear /SearchDir:{{path\to\directory}} {{path\to\source_file.pas}}`
2022-01-03 06:30:53 +10:00
- Compile the specified source file into an executable, defining a symbol:
2022-01-03 06:30:53 +10:00
`pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}`