gnatmake, gnatprep, gprbuild: add page (#8557)

This commit is contained in:
Daniil Baturin
2022-10-09 23:04:52 +01:00
committed by GitHub
parent 8e47337714
commit d37879cb3e
3 changed files with 48 additions and 0 deletions

20
pages/common/gprbuild.md Normal file
View File

@@ -0,0 +1,20 @@
# gprbuild
> A high-level build tool for projects written in Ada and other languages (C/C++/Fortran).
> More information: <https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug.html>.
- Build a project (assuming only one `*.gpr` file exists in the current directory):
`gprbuild`
- Build a specific [P]roject file:
`gprbuild -P{{project_name}}`
- Clean up the build workspace:
`gprclean`
- Install compiled binaries:
`gprinstall --prefix {{path/to/installation/dir}}`