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/cleanextensions.md

26 lines
469 B
Markdown
Raw Normal View History

2021-03-11 20:29:22 +00:00
Specifies one or more file extensions to find and remove when cleaning the project.
```lua
cleanextensions { ".ext1", ".ext2" }
```
### Parameters ###
A list of dot-prefixed file extensions to be cleaned.
### Applies To ###
Projects.
### Availability ###
Premake 5.0 or later. This function is currently implemented only for Visual Studio 201x.
### Examples ###
Remove .zip files from the output directory when cleaning.
```lua
cleanextensions { ".zip" }
```