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/forceincludes.md
2021-03-12 22:10:24 +01:00

24 lines
504 B
Markdown

Applies one or more "forced include" files to the project; these includes behave as it they had been injected into the first line of each source file in the project.
```lua
forceincludes { "files" }
```
### Parameters ###
`files` specifies a list of files to be force included. Paths should be specified relative to the currently running script file.
### Applies To ###
Project configurations.
### Availability ###
Premake 5.0 or later.
### Examples ###
```lua
forceincludes { "stdafx.h" }
```