C++17ification! - Filesystem interaction now uses std::filesystem::path. - Usage of const char*, std::string have been changed to std::string_view where appropriate. - Usage of printf-style functions changed to use fmt.
18 lines
356 B
Lua
18 lines
356 B
Lua
project_root = "../../../.."
|
|
include(project_root.."/tools/build")
|
|
|
|
test_suite("xenia-cpu-tests", project_root, ".", {
|
|
links = {
|
|
"capstone",
|
|
"fmt",
|
|
"xenia-base",
|
|
"xenia-core",
|
|
"xenia-cpu",
|
|
"xenia-cpu-backend-x64",
|
|
|
|
-- TODO(benvanik): cut these dependencies?
|
|
"xenia-kernel",
|
|
"xenia-ui", -- needed by xenia-base
|
|
},
|
|
})
|