-
-
Notifications
You must be signed in to change notification settings - Fork 621
architecture
Jason Perkins edited this page Apr 14, 2015
·
6 revisions
The architecture function specifies the system architecture to be targeted by the configuration.
architecture ("value")
value is one of:
- x86
- x86_64
More values may be added by add-on modules.
Any configuration.
Premake 5.0 or later.
Set up 32- and 64-bit Windows builds.
solution "MySolution"
configurations { "Debug32", "Release32", "Debug64", "Release64" }
filter "configurations:*32"
architecture "x86"
filter "configurations:*64"
architecture "x86_64"