Initial community commit
This commit is contained in:
27
Src/external_dependencies/openmpt-trunk/include/premake/website/docs/undefines.md
vendored
Normal file
27
Src/external_dependencies/openmpt-trunk/include/premake/website/docs/undefines.md
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
Removes preprocessor or compiler symbols from a project.
|
||||
|
||||
```lua
|
||||
undefines { "symbols" }
|
||||
```
|
||||
|
||||
If a project includes multiple calls to `undefines` the lists are concatenated, in the order in which they appear in the script.
|
||||
|
||||
### Parameters ###
|
||||
|
||||
`symbols` specifies a list of symbols to be undefined.
|
||||
|
||||
### Applies To ###
|
||||
|
||||
Project configurations.
|
||||
|
||||
### Availability ###
|
||||
|
||||
Premake 5.0 or later
|
||||
|
||||
### Examples ###
|
||||
|
||||
Undefine two symbols in the current project.
|
||||
|
||||
```lua
|
||||
undefines { "DEBUG", "TRACE" }
|
||||
```
|
||||
Reference in New Issue
Block a user