# ProgramOptions

`import { ProgramOptions } from "destack:compute";`

Compile options for one compute program.

```ds title="ProgramOptions"
export struct ProgramOptions {
    label: string;
    entries: [string];
    debug: boolean;
}
```

[language/library/src/compute/program.ds:62:71](https://github.com/destack-sh/destack/blob/main/language/library/src/compute/program.ds#L62-L71)

## Members

### `label: string`

Debug label.

### `entries: [string]`

Entry point names to retain when provided.

### `debug: boolean`

Whether to keep backend debug information.
