2015-12-31 00:52:49 +00:00
|
|
|
include("tools/build")
|
2015-12-31 08:37:13 +00:00
|
|
|
require("third_party/premake-export-compile-commands/export-compile-commands")
|
2015-07-18 23:00:01 +00:00
|
|
|
|
|
|
|
location(build_root)
|
|
|
|
targetdir(build_bin)
|
|
|
|
objdir(build_obj)
|
|
|
|
|
2017-05-09 03:21:43 +00:00
|
|
|
-- Define an ARCH variable
|
|
|
|
-- Only use this to enable architecture-specific functionality.
|
2019-04-18 10:26:20 +00:00
|
|
|
if os.istarget("linux") then
|
2017-05-09 03:21:43 +00:00
|
|
|
ARCH = os.outputof("uname -p")
|
|
|
|
else
|
|
|
|
ARCH = "unknown"
|
|
|
|
end
|
|
|
|
|
2015-07-18 23:00:01 +00:00
|
|
|
includedirs({
|
|
|
|
".",
|
|
|
|
"src",
|
|
|
|
"third_party",
|
|
|
|
})
|
|
|
|
|
|
|
|
defines({
|
|
|
|
"_UNICODE",
|
|
|
|
"UNICODE",
|
2016-01-01 06:01:22 +00:00
|
|
|
|
|
|
|
-- TODO(benvanik): find a better place for this stuff.
|
|
|
|
"GLEW_NO_GLU=1",
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
|
|
|
|
2017-05-07 21:21:44 +00:00
|
|
|
-- TODO(DrChat): Find a way to disable this on other architectures.
|
2018-04-04 00:02:49 +00:00
|
|
|
if ARCH ~= "ppc64" then
|
|
|
|
filter("architecture:x86_64")
|
|
|
|
vectorextensions("AVX")
|
|
|
|
filter({})
|
|
|
|
end
|
2017-05-07 21:21:44 +00:00
|
|
|
|
|
|
|
characterset("Unicode")
|
2015-07-18 23:00:01 +00:00
|
|
|
flags({
|
|
|
|
--"ExtraWarnings", -- Sets the compiler's maximum warning level.
|
2019-09-13 09:14:26 +00:00
|
|
|
--"FatalWarnings", -- Treat warnings as errors.
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
filter("kind:StaticLib")
|
|
|
|
defines({
|
|
|
|
"_LIB",
|
|
|
|
})
|
|
|
|
|
|
|
|
filter("configurations:Checked")
|
|
|
|
runtime("Debug")
|
|
|
|
defines({
|
|
|
|
"DEBUG",
|
|
|
|
})
|
|
|
|
runtime("Debug")
|
2015-08-18 21:18:00 +00:00
|
|
|
filter({"configurations:Checked", "platforms:Windows"})
|
2015-07-18 23:00:01 +00:00
|
|
|
buildoptions({
|
2019-09-06 21:37:55 +00:00
|
|
|
"/RTCsu /MP", -- Full Run-Time Checks.
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
filter("configurations:Debug")
|
|
|
|
runtime("Debug")
|
|
|
|
defines({
|
|
|
|
"DEBUG",
|
|
|
|
"_NO_DEBUG_HEAP=1",
|
|
|
|
})
|
|
|
|
runtime("Release")
|
2015-09-22 14:52:45 +00:00
|
|
|
filter({"configurations:Debug", "platforms:Windows"})
|
|
|
|
linkoptions({
|
|
|
|
"/NODEFAULTLIB:MSVCRTD",
|
|
|
|
})
|
2019-09-06 21:37:55 +00:00
|
|
|
buildoptions({
|
|
|
|
"/MP",
|
|
|
|
})
|
2019-10-19 19:28:24 +00:00
|
|
|
flags({
|
|
|
|
"NoMinimalRebuild", -- Required for /MP above.
|
|
|
|
})
|
2019-09-06 21:37:55 +00:00
|
|
|
|
2018-01-08 21:53:27 +00:00
|
|
|
filter({"configurations:Debug", "platforms:Linux"})
|
|
|
|
buildoptions({
|
|
|
|
"-g",
|
|
|
|
})
|
|
|
|
|
2015-07-18 23:00:01 +00:00
|
|
|
filter("configurations:Release")
|
|
|
|
runtime("Release")
|
|
|
|
defines({
|
|
|
|
"NDEBUG",
|
|
|
|
"_NO_DEBUG_HEAP=1",
|
|
|
|
})
|
2019-05-12 16:49:23 +00:00
|
|
|
optimize("speed")
|
|
|
|
inlining("Auto")
|
|
|
|
floatingpoint("Fast")
|
2015-07-18 23:00:01 +00:00
|
|
|
flags({
|
|
|
|
"LinkTimeOptimization",
|
2019-10-19 19:28:24 +00:00
|
|
|
"NoMinimalRebuild", -- Required for /MP.
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
|
|
|
runtime("Release")
|
2015-09-22 14:52:45 +00:00
|
|
|
filter({"configurations:Release", "platforms:Windows"})
|
|
|
|
linkoptions({
|
|
|
|
"/NODEFAULTLIB:MSVCRTD",
|
|
|
|
})
|
2019-05-12 16:49:23 +00:00
|
|
|
buildoptions({
|
2019-10-19 19:28:24 +00:00
|
|
|
"/MP /O2",
|
2019-05-12 16:49:23 +00:00
|
|
|
})
|
2015-07-18 23:00:01 +00:00
|
|
|
|
2015-08-01 08:30:47 +00:00
|
|
|
filter("platforms:Linux")
|
|
|
|
system("linux")
|
|
|
|
toolset("clang")
|
|
|
|
buildoptions({
|
2017-05-07 21:21:44 +00:00
|
|
|
-- "-mlzcnt", -- (don't) Assume lzcnt is supported.
|
2017-12-20 21:59:50 +00:00
|
|
|
"`pkg-config --cflags gtk+-x11-3.0`",
|
|
|
|
"-fno-lto", -- Premake doesn't support LTO on clang
|
2015-08-01 08:30:47 +00:00
|
|
|
})
|
2017-02-06 06:24:06 +00:00
|
|
|
links({
|
|
|
|
"pthread",
|
2017-07-09 22:00:00 +00:00
|
|
|
"dl",
|
2017-07-08 08:33:12 +00:00
|
|
|
"lz4",
|
2017-12-20 01:29:30 +00:00
|
|
|
"rt",
|
2017-07-08 08:33:12 +00:00
|
|
|
})
|
|
|
|
linkoptions({
|
|
|
|
"`pkg-config --libs gtk+-3.0`",
|
2017-02-06 06:24:06 +00:00
|
|
|
})
|
2015-08-01 08:30:47 +00:00
|
|
|
|
2017-04-26 06:25:12 +00:00
|
|
|
filter({"platforms:Linux", "kind:*App"})
|
|
|
|
linkgroups("On")
|
|
|
|
|
2018-04-04 00:21:17 +00:00
|
|
|
filter({"platforms:Linux", "language:C++", "toolset:gcc"})
|
2017-05-09 03:21:43 +00:00
|
|
|
buildoptions({
|
2018-04-04 00:02:49 +00:00
|
|
|
"-std=c++14",
|
2017-05-09 03:21:43 +00:00
|
|
|
})
|
|
|
|
links({
|
|
|
|
})
|
2018-06-02 22:40:30 +00:00
|
|
|
disablewarnings({
|
|
|
|
"unused-result"
|
|
|
|
})
|
2018-04-04 00:21:17 +00:00
|
|
|
|
|
|
|
filter({"platforms:Linux", "toolset:gcc"})
|
2018-04-04 00:02:49 +00:00
|
|
|
if ARCH == "ppc64" then
|
|
|
|
buildoptions({
|
|
|
|
"-m32",
|
|
|
|
"-mpowerpc64"
|
|
|
|
})
|
|
|
|
linkoptions({
|
|
|
|
"-m32",
|
|
|
|
"-mpowerpc64"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2018-04-04 00:21:17 +00:00
|
|
|
filter({"platforms:Linux", "language:C++", "toolset:clang"})
|
2017-02-06 04:13:01 +00:00
|
|
|
links({
|
2018-04-04 00:02:49 +00:00
|
|
|
"c++",
|
|
|
|
"c++abi"
|
2017-02-06 04:13:01 +00:00
|
|
|
})
|
2017-12-20 01:29:30 +00:00
|
|
|
disablewarnings({
|
|
|
|
"deprecated-register"
|
|
|
|
})
|
2018-11-25 03:32:19 +00:00
|
|
|
filter({"platforms:Linux", "language:C++", "toolset:clang", "files:*.cc or *.cpp"})
|
|
|
|
buildoptions({
|
|
|
|
"-std=c++14",
|
|
|
|
"-stdlib=libstdc++",
|
|
|
|
})
|
2015-09-22 05:08:19 +00:00
|
|
|
|
2015-07-18 23:00:01 +00:00
|
|
|
filter("platforms:Windows")
|
|
|
|
system("windows")
|
|
|
|
toolset("msc")
|
2015-07-18 23:40:22 +00:00
|
|
|
buildoptions({
|
2015-07-19 06:04:21 +00:00
|
|
|
"/MP", -- Multiprocessor compilation.
|
|
|
|
"/wd4100", -- Unreferenced parameters are ok.
|
|
|
|
"/wd4201", -- Nameless struct/unions are ok.
|
|
|
|
"/wd4512", -- 'assignment operator was implicitly defined as deleted'.
|
|
|
|
"/wd4127", -- 'conditional expression is constant'.
|
|
|
|
"/wd4324", -- 'structure was padded due to alignment specifier'.
|
|
|
|
"/wd4189", -- 'local variable is initialized but not referenced'.
|
2017-12-23 00:48:32 +00:00
|
|
|
"/utf-8", -- 'build correctly on systems with non-Latin codepages'.
|
2015-07-18 23:40:22 +00:00
|
|
|
})
|
2015-07-18 23:00:01 +00:00
|
|
|
flags({
|
2015-07-18 23:40:22 +00:00
|
|
|
"NoMinimalRebuild", -- Required for /MP above.
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
2017-05-07 21:21:44 +00:00
|
|
|
|
|
|
|
symbols("On")
|
2015-07-18 23:00:01 +00:00
|
|
|
defines({
|
|
|
|
"_CRT_NONSTDC_NO_DEPRECATE",
|
|
|
|
"_CRT_SECURE_NO_WARNINGS",
|
|
|
|
"WIN32",
|
|
|
|
"_WIN64=1",
|
|
|
|
"_AMD64=1",
|
|
|
|
})
|
2015-09-22 05:09:40 +00:00
|
|
|
linkoptions({
|
|
|
|
"/ignore:4006", -- Ignores complaints about empty obj files.
|
|
|
|
"/ignore:4221",
|
|
|
|
})
|
2015-07-18 23:00:01 +00:00
|
|
|
links({
|
|
|
|
"ntdll",
|
|
|
|
"wsock32",
|
|
|
|
"ws2_32",
|
|
|
|
"xinput",
|
|
|
|
"comctl32",
|
2017-08-04 00:03:26 +00:00
|
|
|
"shcore",
|
2015-07-18 23:00:01 +00:00
|
|
|
"shlwapi",
|
2018-07-18 08:42:51 +00:00
|
|
|
"dxguid",
|
2015-07-18 23:00:01 +00:00
|
|
|
})
|
|
|
|
|
2019-04-17 22:08:59 +00:00
|
|
|
-- Create scratch/ path
|
2015-07-18 23:00:01 +00:00
|
|
|
if not os.isdir("scratch") then
|
|
|
|
os.mkdir("scratch")
|
|
|
|
end
|
|
|
|
|
|
|
|
solution("xenia")
|
|
|
|
uuid("931ef4b0-6170-4f7a-aaf2-0fece7632747")
|
|
|
|
startproject("xenia-app")
|
|
|
|
architecture("x86_64")
|
2019-04-18 10:26:20 +00:00
|
|
|
if os.istarget("linux") then
|
2015-08-01 17:05:01 +00:00
|
|
|
platforms({"Linux"})
|
2019-04-18 10:26:20 +00:00
|
|
|
elseif os.istarget("windows") then
|
2015-08-01 17:05:01 +00:00
|
|
|
platforms({"Windows"})
|
2018-08-25 11:38:55 +00:00
|
|
|
-- Minimum version to support ID3D12GraphicsCommandList1 (for
|
|
|
|
-- SetSamplePositions).
|
2019-04-18 19:08:52 +00:00
|
|
|
filter("action:vs2017")
|
|
|
|
systemversion("10.0.15063.0")
|
|
|
|
filter("action:vs2019")
|
|
|
|
systemversion("10.0")
|
|
|
|
filter({})
|
2015-08-01 17:05:01 +00:00
|
|
|
end
|
2019-10-20 20:51:32 +00:00
|
|
|
configurations({"Release", "Debug", "Checked"})
|
2015-07-18 23:00:01 +00:00
|
|
|
|
2019-04-14 15:08:07 +00:00
|
|
|
include("third_party/aes_128.lua")
|
2015-08-22 16:10:16 +00:00
|
|
|
include("third_party/capstone.lua")
|
2018-08-27 12:18:30 +00:00
|
|
|
include("third_party/dxbc.lua")
|
2019-08-02 14:06:02 +00:00
|
|
|
include("third_party/discord-rpc.lua")
|
2019-04-16 16:36:30 +00:00
|
|
|
include("third_party/cxxopts.lua")
|
2018-11-25 15:39:14 +00:00
|
|
|
include("third_party/cpptoml.lua")
|
2015-08-22 16:10:16 +00:00
|
|
|
include("third_party/glew.lua")
|
2016-02-19 00:40:02 +00:00
|
|
|
include("third_party/glslang-spirv.lua")
|
2015-08-22 16:10:16 +00:00
|
|
|
include("third_party/imgui.lua")
|
|
|
|
include("third_party/libav.lua")
|
2018-11-23 21:32:14 +00:00
|
|
|
include("third_party/mspack.lua")
|
2015-12-31 04:29:12 +00:00
|
|
|
include("third_party/snappy.lua")
|
2015-11-23 01:41:39 +00:00
|
|
|
include("third_party/spirv-tools.lua")
|
2018-05-04 21:49:46 +00:00
|
|
|
include("third_party/volk.lua")
|
2015-08-22 16:10:16 +00:00
|
|
|
include("third_party/xxhash.lua")
|
2016-01-01 20:13:36 +00:00
|
|
|
include("third_party/yaml-cpp.lua")
|
2015-09-12 17:02:06 +00:00
|
|
|
|
2015-07-18 23:00:01 +00:00
|
|
|
include("src/xenia")
|
|
|
|
include("src/xenia/app")
|
2019-08-02 14:06:02 +00:00
|
|
|
include("src/xenia/app/discord")
|
2015-07-18 23:00:01 +00:00
|
|
|
include("src/xenia/apu")
|
|
|
|
include("src/xenia/apu/nop")
|
|
|
|
include("src/xenia/base")
|
|
|
|
include("src/xenia/cpu")
|
|
|
|
include("src/xenia/cpu/backend/x64")
|
|
|
|
include("src/xenia/debug/ui")
|
|
|
|
include("src/xenia/gpu")
|
2016-08-04 14:50:13 +00:00
|
|
|
include("src/xenia/gpu/null")
|
2019-08-07 21:08:20 +00:00
|
|
|
include("src/xenia/gpu/vk")
|
2016-02-18 05:17:12 +00:00
|
|
|
include("src/xenia/gpu/vulkan")
|
2015-07-18 23:00:01 +00:00
|
|
|
include("src/xenia/hid")
|
|
|
|
include("src/xenia/hid/nop")
|
|
|
|
include("src/xenia/kernel")
|
|
|
|
include("src/xenia/ui")
|
2015-11-25 03:49:05 +00:00
|
|
|
include("src/xenia/ui/spirv")
|
2019-08-07 21:08:20 +00:00
|
|
|
include("src/xenia/ui/vk")
|
2016-02-18 01:42:25 +00:00
|
|
|
include("src/xenia/ui/vulkan")
|
2015-07-18 23:00:01 +00:00
|
|
|
include("src/xenia/vfs")
|
|
|
|
|
2019-04-18 10:26:20 +00:00
|
|
|
if os.istarget("windows") then
|
2015-08-18 21:18:00 +00:00
|
|
|
include("src/xenia/apu/xaudio2")
|
2018-07-18 08:42:51 +00:00
|
|
|
include("src/xenia/gpu/d3d12")
|
2015-08-18 21:18:00 +00:00
|
|
|
include("src/xenia/hid/winkey")
|
|
|
|
include("src/xenia/hid/xinput")
|
2018-07-18 12:02:37 +00:00
|
|
|
include("src/xenia/ui/d3d12")
|
2015-08-18 21:18:00 +00:00
|
|
|
end
|