- Update premake build script for VS2017+ build support.

- Update premake (for VS2019 support).
- Update Xenia build script to detect VS2017+ version.
- Update Xenia premake scripts due to updated premake.
- Fix cc override in Xenia build script.
This commit is contained in:
gibbed 2019-04-18 05:26:20 -05:00
parent 63e135590c
commit ffbc99926b
14 changed files with 49 additions and 34 deletions

View File

@ -7,7 +7,7 @@ objdir(build_obj)
-- Define an ARCH variable -- Define an ARCH variable
-- Only use this to enable architecture-specific functionality. -- Only use this to enable architecture-specific functionality.
if os.is("linux") then if os.istarget("linux") then
ARCH = os.outputof("uname -p") ARCH = os.outputof("uname -p")
else else
ARCH = "unknown" ARCH = "unknown"
@ -220,9 +220,9 @@ solution("xenia")
uuid("931ef4b0-6170-4f7a-aaf2-0fece7632747") uuid("931ef4b0-6170-4f7a-aaf2-0fece7632747")
startproject("xenia-app") startproject("xenia-app")
architecture("x86_64") architecture("x86_64")
if os.is("linux") then if os.istarget("linux") then
platforms({"Linux"}) platforms({"Linux"})
elseif os.is("windows") then elseif os.istarget("windows") then
platforms({"Windows"}) platforms({"Windows"})
end end
configurations({"Checked", "Debug", "Release"}) configurations({"Checked", "Debug", "Release"})
@ -261,7 +261,7 @@ solution("xenia")
include("src/xenia/ui/vulkan") include("src/xenia/ui/vulkan")
include("src/xenia/vfs") include("src/xenia/vfs")
if os.is("windows") then if os.istarget("windows") then
include("src/xenia/apu/xaudio2") include("src/xenia/apu/xaudio2")
include("src/xenia/hid/winkey") include("src/xenia/hid/winkey")
include("src/xenia/hid/xinput") include("src/xenia/hid/xinput")

View File

@ -39,9 +39,6 @@ project("xenia-app")
"xenia-vfs", "xenia-vfs",
"xxhash", "xxhash",
}) })
flags({
"WinMain", -- Use WinMain instead of main.
})
defines({ defines({
"XBYAK_NO_OP_NAMES", "XBYAK_NO_OP_NAMES",
"XBYAK_ENABLE_OMITTED_OPERAND", "XBYAK_ENABLE_OMITTED_OPERAND",

View File

@ -59,9 +59,6 @@ project("xenia-gpu-vulkan-trace-viewer")
"xenia-vfs", "xenia-vfs",
"xxhash", "xxhash",
}) })
flags({
"WinMain", -- Use WinMain instead of main.
})
defines({ defines({
}) })
includedirs({ includedirs({

View File

@ -33,9 +33,6 @@ project("xenia-hid-demo")
"xenia-ui", "xenia-ui",
"xenia-ui-vulkan", "xenia-ui-vulkan",
}) })
flags({
"WinMain", -- Use WinMain instead of main.
})
defines({ defines({
"GLEW_STATIC=1", "GLEW_STATIC=1",
"GLEW_MX=1", "GLEW_MX=1",

View File

@ -37,9 +37,6 @@ project("xenia-ui-window-vulkan-demo")
"xenia-ui-spirv", "xenia-ui-spirv",
"xenia-ui-vulkan", "xenia-ui-vulkan",
}) })
flags({
"WinMain", -- Use WinMain instead of main.
})
defines({ defines({
}) })
includedirs({ includedirs({

View File

@ -26,9 +26,6 @@ project("xenia-vfs-dump")
"xenia-base", "xenia-base",
"xenia-vfs", "xenia-vfs",
}) })
flags({
-- "WinMain", -- Use WinMain instead of main.
})
defines({}) defines({})
includedirs({ includedirs({
project_root.."/third_party/gflags/src", project_root.."/third_party/gflags/src",

@ -1 +1 @@
Subproject commit 61d799c8f9d1ab8130942b2d9dcd2819b9d8b049 Subproject commit 8593bc9480924f0d0724a4533e8de70222e6a08d

Binary file not shown.

View File

@ -69,9 +69,8 @@ def build_premake():
elif sys.platform == 'win32': elif sys.platform == 'win32':
# Grab Visual Studio version and execute shell to set up environment. # Grab Visual Studio version and execute shell to set up environment.
vs_version = import_vs_environment() vs_version = import_vs_environment()
if vs_version != 2015: if vs_version is None:
print('ERROR: Visual Studio 2015 not found!') print('ERROR: Visual Studio not found!')
print('Ensure you have the VS140COMNTOOLS environment variable!')
sys.exit(1) sys.exit(1)
return return
@ -143,17 +142,30 @@ def import_vs_environment():
A version such as 2015 or None if no VS is found. A version such as 2015 or None if no VS is found.
""" """
version = 0 version = 0
candidate_path = subprocess.check_output('../../third_party/vswhere/vswhere.exe -all -version "[15,)" -latest -format value -property installationPath', shell=False, universal_newlines=True)
candidate_path = candidate_path.strip()
tools_path = '' tools_path = ''
if 'VS140COMNTOOLS' in os.environ: if candidate_path:
tools_path = os.path.join(candidate_path, 'vc\\auxiliary\\build\\vcvarsall.bat')
if os.path.isfile(tools_path) and os.access(tools_path, os.X_OK):
version = subprocess.check_output('third_party/vswhere/vswhere.exe -version "[15,)" -latest -format value -property catalog_productLineVersion', shell=False, universal_newlines=True)
version = version.strip()
if version:
version = int(version)
else:
version = 2017
if version == 0 and 'VS140COMNTOOLS' in os.environ:
version = 2015 version = 2015
tools_path = os.environ['VS140COMNTOOLS'] tools_path = os.environ['VS140COMNTOOLS']
tools_path = os.path.join(tools_path, '..\\..\\vc\\vcvarsall.bat')
if version == 0: if version == 0:
return None return None
tools_path = os.path.join(tools_path, '..\\..\\vc\\vcvarsall.bat')
args = [tools_path, '&&', 'set'] args = [tools_path, 'x64', '&&', 'set']
popen = subprocess.Popen( popen = subprocess.Popen(
args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
variables, _ = popen.communicate() variables, _ = popen.communicate()
envvars_to_save = ( envvars_to_save = (
'devenvdir', 'devenvdir',

View File

@ -1,3 +1,5 @@
require("vstudio")
include("scripts/build_paths.lua") include("scripts/build_paths.lua")
include("scripts/force_compile_as_c.lua") include("scripts/force_compile_as_c.lua")
include("scripts/force_compile_as_cc.lua") include("scripts/force_compile_as_cc.lua")

View File

@ -7,7 +7,7 @@ build_tools = "tools/build"
build_scripts = build_tools .. "/scripts" build_scripts = build_tools .. "/scripts"
build_tools_src = build_tools .. "/src" build_tools_src = build_tools .. "/src"
if os.is("windows") then if os.istarget("windows") then
platform_suffix = "win" platform_suffix = "win"
else else
platform_suffix = "posix" platform_suffix = "posix"

View File

@ -21,7 +21,11 @@ if premake.override then
-- for msvc -- for msvc
premake.override(premake.vstudio.vc2010, "additionalCompileOptions", function(base, cfg, condition) premake.override(premake.vstudio.vc2010, "additionalCompileOptions", function(base, cfg, condition)
if cfg.abspath and table.contains(forced_c_files, cfg.abspath) then if cfg.abspath and table.contains(forced_c_files, cfg.abspath) then
_p(3,'<CompileAs %s>CompileAsC</CompileAs>', condition) if condition == nil or condition == '' then
_p(3,'<CompileAs>CompileAsC</CompileAs>')
else
_p(3,'<CompileAs Condition="\'$(Configuration)|$(Platform)\'==\'%s\'">CompileAsC</CompileAs>', condition)
end
end end
return base(cfg, condition) return base(cfg, condition)
end) end)

View File

@ -21,7 +21,11 @@ if premake.override then
-- for msvc -- for msvc
premake.override(premake.vstudio.vc2010, "additionalCompileOptions", function(base, cfg, condition) premake.override(premake.vstudio.vc2010, "additionalCompileOptions", function(base, cfg, condition)
if cfg.abspath and table.contains(forced_cc_files, cfg.abspath) then if cfg.abspath and table.contains(forced_cc_files, cfg.abspath) then
_p(3,'<CompileAs %s>CompileAsCpp</CompileAs>', condition) if condition == nil or condition == '' then
_p(3,'<CompileAs>CompileAsCpp</CompileAs>')
else
_p(3,'<CompileAs Condition="\'$(Configuration)|$(Platform)\'==\'%s\'">CompileAsCpp</CompileAs>', condition)
end
end end
return base(cfg, condition) return base(cfg, condition)
end) end)

View File

@ -100,7 +100,12 @@ def import_vs_environment():
if candidate_path: if candidate_path:
tools_path = os.path.join(candidate_path, 'vc\\auxiliary\\build\\vcvarsall.bat') tools_path = os.path.join(candidate_path, 'vc\\auxiliary\\build\\vcvarsall.bat')
if os.path.isfile(tools_path) and os.access(tools_path, os.X_OK): if os.path.isfile(tools_path) and os.access(tools_path, os.X_OK):
version = 2017 version = subprocess.check_output('third_party/vswhere/vswhere.exe -version "[15,)" -latest -format value -property catalog_productLineVersion', shell=False, universal_newlines=True)
version = version.strip()
if version:
version = int(version)
else:
version = 2017
if version == 0 and 'VS140COMNTOOLS' in os.environ: if version == 0 and 'VS140COMNTOOLS' in os.environ:
version = 2015 version = 2015
tools_path = os.environ['VS140COMNTOOLS'] tools_path = os.environ['VS140COMNTOOLS']
@ -317,16 +322,19 @@ def run_premake(target_os, action, cc=None):
target_os: target --os to pass to premake. target_os: target --os to pass to premake.
action: action to preform. action: action to preform.
""" """
ret = subprocess.call([ args = [
sys.executable, sys.executable,
os.path.join('tools', 'build', 'premake'), os.path.join('tools', 'build', 'premake'),
'--file=premake5.lua', '--file=premake5.lua',
'--os=%s' % target_os, '--os=%s' % target_os,
'--cc=%s' % ('clang' if not cc else cc),
'--test-suite-mode=combined', '--test-suite-mode=combined',
'--verbose', '--verbose',
action, action,
], shell=False) ]
if cc:
args.insert(4, '--cc=%s' % cc)
ret = subprocess.call(args, shell=False)
if ret == 0: if ret == 0:
generate_version_h() generate_version_h()