You've already forked ada_language_server
mirror of
https://github.com/AdaCore/ada_language_server.git
synced 2026-02-12 12:45:50 -08:00
36 lines
721 B
Markdown
36 lines
721 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:
|
|
|
|
```typesript
|
|
type GlsMainResult = string[];
|
|
```
|
|
|
|
The second one is:
|
|
|
|
command: `als-executables`
|
|
|
|
Which provides the executables for the project, with a response type:
|
|
|
|
```typesript
|
|
type GlsExecutableResult = string[];
|
|
```
|