Files
Xenia-Canary/src/xenia/cpu/premake5.lua
Gliniak 31d715d100 [Premake] Removed unused/unnecessary subprojects.
- Testing currently doesn't work
- VFS Dump is unused. You can use internal function for it
- Demos are only for fun
- Trace Dump & Trace Viewer (unsure, but ok)

You can re-enable them by changing values: enableTests and enableMiscSubprojects in main premake file.

In the future there should be xb command support to overwrite them
2025-04-15 09:04:16 +02:00

28 lines
567 B
Lua

project_root = "../../.."
include(project_root.."/tools/build")
group("src")
project("xenia-cpu")
uuid("0109c91e-5a04-41ab-9168-0d5187d11298")
kind("StaticLib")
language("C++")
links({
"xenia-base",
"mspack",
})
includedirs({
project_root.."/third_party/llvm/include",
})
local_platform_files()
local_platform_files("backend")
local_platform_files("compiler")
local_platform_files("compiler/passes")
local_platform_files("hir")
local_platform_files("ppc")
if enableTests then
include("testing")
include("ppc/testing")
end