19 lines
388 B
Lua
19 lines
388 B
Lua
project_root = "../../../.."
|
|
include(project_root.."/build_tools")
|
|
|
|
test_suite("xenia-cpu-tests", project_root, ".", {
|
|
includedirs = {
|
|
project_root.."/build_tools/third_party/gflags/src",
|
|
},
|
|
links = {
|
|
"xenia-base",
|
|
"xenia-core",
|
|
"xenia-cpu",
|
|
"xenia-cpu-backend-x64",
|
|
|
|
-- TODO(benvanik): cut these dependencies?
|
|
"xenia-debug",
|
|
"xenia-kernel",
|
|
},
|
|
})
|