Files
ada_language_server/doc/executables.md
Maxim Reznik 091f459689 Add Sphinx script to build documentation.
Fix minor issues in markdown documents and group them im `toctree`
directives. Then use `myst-parser` to parse markdown files.

To build documentation:
* pip install -r doc/requirements.txt
* make -C doc html

Refs #1419
2025-02-13 21:45:08 +00:00

36 lines
723 B
Markdown

# Executables
## Short introduction
This implements a functionality to query the mains and the executables for a multi targets project.
## Capabilities
We provide the Build and Run tasks for specific targets in a GPR Projects.
To check these tasks :
- click : `Ctrl + Shift + P `.
- Select `Run Tasks` , then Select `GPR Tasks`.
## Change description
We introduce two commands, the first one:
command: `als-mains`
Which provides the mains for the project, with a response type:
```typescript
type GlsMainResult = string[];
```
The second one is:
command: `als-executables`
Which provides the executables for the project, with a response type:
```typescript
type GlsExecutableResult = string[];
```