mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-01-12 02:19:31 +08:00
better arch handle
This commit is contained in:
parent
cbad4a4f13
commit
f34e5291b8
13
premake.lua
13
premake.lua
@ -69,6 +69,7 @@ if _ACTION == "generateproto" then
|
|||||||
|
|
||||||
workspace "GBE"
|
workspace "GBE"
|
||||||
configurations { "Debug", "Release", "ExperimentalDebug", "ExperimentalRelease" }
|
configurations { "Debug", "Release", "ExperimentalDebug", "ExperimentalRelease" }
|
||||||
|
platforms { "X64", "X86" }
|
||||||
location "GBE_Build"
|
location "GBE_Build"
|
||||||
|
|
||||||
project "SteamEmu"
|
project "SteamEmu"
|
||||||
@ -112,21 +113,17 @@ project "SteamEmu"
|
|||||||
crash_linux
|
crash_linux
|
||||||
}
|
}
|
||||||
|
|
||||||
-- BUILD X64 and X85 on VS. (soon more!)
|
|
||||||
filter "action:vs*"
|
|
||||||
platforms { "x86_64", "x86" }
|
|
||||||
|
|
||||||
-- SET ARCH
|
-- SET ARCH
|
||||||
filter "platforms:x86"
|
filter "platforms:X86"
|
||||||
targetname "steam_api"
|
targetname "steam_api"
|
||||||
architecture "x86"
|
architecture "x86"
|
||||||
|
|
||||||
filter "platforms:x86_64"
|
filter "platforms:X64"
|
||||||
targetname "steam_api64"
|
targetname "steam_api64"
|
||||||
architecture "x86_64"
|
architecture "x86_64"
|
||||||
|
|
||||||
-- WIN 32 DEFAULTS
|
-- WIN 32 DEFAULTS
|
||||||
filter { "platforms:x86", "options:os=windows" }
|
filter { "platforms:X86", "options:os=windows" }
|
||||||
links {
|
links {
|
||||||
win_link,
|
win_link,
|
||||||
default_link,
|
default_link,
|
||||||
@ -156,7 +153,7 @@ project "SteamEmu"
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- WIN 64 DEFAULTS
|
-- WIN 64 DEFAULTS
|
||||||
filter { "platforms:x86_64", "options:os=windows" }
|
filter { "platforms:X64", "options:os=windows" }
|
||||||
links {
|
links {
|
||||||
win_link,
|
win_link,
|
||||||
default_link,
|
default_link,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user