Adding window demo.

This commit is contained in:
Ben Vanik
2015-11-07 10:37:46 -08:00
parent fdf59fec5f
commit f065872241
6 changed files with 254 additions and 131 deletions

View File

@@ -71,9 +71,13 @@ project("xenia-gpu-gl4-trace-viewer")
})
filter("platforms:Windows")
debugdir(project_root)
debugargs({
"--flagfile=scratch/flags.txt",
"2>&1",
"1>scratch/stdout-trace-viewer.txt",
})
-- Only create the .user file if it doesn't already exist.
local user_file = project_root.."/build/xenia-gpu-gl4-trace-viewer.vcxproj.user"
if not os.isfile(user_file) then
debugdir(project_root)
debugargs({
"--flagfile=scratch/flags.txt",
"2>&1",
"1>scratch/stdout-trace-viewer.txt",
})
end