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

50 lines
890 B
Markdown
Raw Normal View History

2021-03-11 20:29:22 +00:00
Specifies the system architecture to be targeted by the configuration.
```lua
architecture ("value")
```
### Parameters ###
`value` is one of:
2021-10-04 06:04:31 +00:00
* `universal`: The universal binaries supported by iOS and macOS
2021-03-11 20:29:22 +00:00
* `x86`
* `x86_64`
* `ARM`
2021-10-04 06:04:31 +00:00
* `ARM64`
Additional values that are aliases for the above:
* `i386`: Alias for `x86`
* `amd64`: Alias for `x86_64`
* `x32`: Alias for `x86`; There is intent to deprecate this
* `x64`: Alias for `x86_64`; There is intent to deprecate this
2021-03-11 20:29:22 +00:00
### Applies To ###
Project configurations.
### Availability ###
Premake 5.0 or later.
### Examples ###
Set up 32- and 64-bit Windows builds.
```lua
workspace "MyWorkspace"
configurations { "Debug32", "Release32", "Debug64", "Release64" }
filter "configurations:*32"
architecture "x86"
filter "configurations:*64"
architecture "x86_64"
```
### See Also ###
* [system](system.md)