This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/website/docs/implibsuffix.md
starkos e9525eec34 Deprecate configuration()
`configuration()` will not be supported in Premake6. Marking it deprecated now so everyone has a chance to phase it out. Closes #1708.
2021-09-17 06:47:03 -04:00

588 B

Specifies a file name suffix for the import library base file name. Import libraries are generated for Windows DLL projects.

implibsuffix ("suffix")

Parameters

suffix is the new filename suffix.

Applies To

Project configurations.

Availability

Premake 4.0 or later.

Examples

-- Add "-d" to debug versions of files
filter { "configurations:Debug" }
   implibsuffix "-d"

See Also