2021-11-14 19:10:47 +00:00
|
|
|
# pabcnetcclear
|
|
|
|
|
|
|
|
> Preprocess and compile PascalABC.NET source files.
|
|
|
|
> More information: <http://pascalabc.net>.
|
|
|
|
|
2022-04-04 13:46:28 +01:00
|
|
|
- Compile the specified source file into an executable with the same name:
|
2021-11-14 19:10:47 +00:00
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pabcnetcclear {{path\to\source_file.pas}}`
|
2021-11-14 19:10:47 +00:00
|
|
|
|
2022-04-04 13:46:28 +01:00
|
|
|
- Compile the specified source file into an executable with the specified name:
|
2022-01-02 20:30:53 +00:00
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pabcnetcclear /Output:{{path\to\_file.exe}} {{path\to\source_file.pas}}`
|
2022-01-02 20:30:53 +00:00
|
|
|
|
2022-04-04 13:46:28 +01: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
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}`
|
2021-11-14 19:10:47 +00:00
|
|
|
|
2022-04-04 13:46:28 +01: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
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pabcnetcclear /SearchDir:{{path\to\directory}} {{path\to\source_file.pas}}`
|
2022-01-02 20:30:53 +00:00
|
|
|
|
2022-04-04 13:46:28 +01:00
|
|
|
- Compile the specified source file into an executable, defining a symbol:
|
2022-01-02 20:30:53 +00:00
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}`
|