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

33 lines
524 B
Markdown
Raw Normal View History

2024-09-24 12:54:57 +00:00
Specifies a file name suffix for the compiled binary target.
```lua
targetsuffix ("suffix")
```
### Parameters ###
`suffix` is the new filename suffix.
### Applies To ###
Project configurations.
### Availability ###
Premake 4.0 or later.
### Examples ###
```lua
-- Add "-d" to debug versions of files
filter { "configurations:Debug" }
targetsuffix "-d"
```
### See Also ###
* [targetname](targetname.md)
* [targetdir](targetdir.md)
* [targetextension](targetextension.md)
* [targetprefix](targetprefix.md)