winamp/Src/external_dependencies/openmpt-trunk/include/premake/website/docs/editAndContinue.md

31 lines
502 B
Markdown
Raw Normal View History

2024-09-24 12:54:57 +00:00
Turns the edit-and-continue features of a toolset or platform on and off.
```lua
editandcontinue "value"
```
If no value is set for a configuration, the toolset's default setting (usually "On") will be used.
### Parameters ###
`value` is a boolean value, i.e. "On" or "Off".
### Applies To ###
Project configurations.
### Availability ###
Premake 5.0 or later.
### Examples ###
```lua
-- Turn off edit and continue
editandcontinue "Off"
```
### See Also ###
- [debugformat](debugformat.md)