Adding yaml-cpp for #428, use rando fork until jbeder/yaml-cpp#342 lands.
This commit is contained in:
parent
171a10ab9b
commit
8770e6e6cf
|
@ -34,3 +34,6 @@
|
|||
[submodule "testdata/reference-gpu-traces"]
|
||||
path = testdata/reference-gpu-traces
|
||||
url = https://github.com/xenia-project/reference-gpu-traces.git
|
||||
[submodule "third_party/yaml-cpp"]
|
||||
path = third_party/yaml-cpp
|
||||
url = https://github.com/blair1618/yaml-cpp.git
|
||||
|
|
|
@ -170,6 +170,7 @@ solution("xenia")
|
|||
include("third_party/snappy.lua")
|
||||
include("third_party/spirv-tools.lua")
|
||||
include("third_party/xxhash.lua")
|
||||
include("third_party/yaml-cpp.lua")
|
||||
|
||||
include("src/xenia")
|
||||
include("src/xenia/app")
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "third_party/capstone/include/x86.h"
|
||||
#include "third_party/imgui/imgui.h"
|
||||
#include "third_party/imgui/imgui_internal.h"
|
||||
#include "third_party/yaml-cpp/include/yaml-cpp/yaml.h"
|
||||
#include "xenia/base/clock.h"
|
||||
#include "xenia/base/logging.h"
|
||||
#include "xenia/base/math.h"
|
||||
|
|
|
@ -12,10 +12,12 @@ project("xenia-debug-ui")
|
|||
"xenia-cpu",
|
||||
"xenia-debug",
|
||||
"xenia-ui",
|
||||
"yaml-cpp",
|
||||
})
|
||||
defines({
|
||||
})
|
||||
includedirs({
|
||||
project_root.."/third_party/gflags/src",
|
||||
project_root.."/third_party/yaml-cpp/include/",
|
||||
})
|
||||
local_platform_files()
|
||||
|
|
|
@ -289,7 +289,7 @@ dword_result_t NtWriteFile(dword_t file_handle, dword_t event_handle,
|
|||
size_t bytes_written = 0;
|
||||
result = file->Write(
|
||||
buffer, buffer_length,
|
||||
byte_offset_ptr ? static_cast<uint32_t>(*byte_offset_ptr) : -1u,
|
||||
byte_offset_ptr ? static_cast<uint32_t>(*byte_offset_ptr) : -1,
|
||||
&bytes_written, apc_context);
|
||||
if (XSUCCEEDED(result)) {
|
||||
info = (int32_t)bytes_written;
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2eba4e6d5670daea6b75c773f1c3dc9e531ddec7
|
|
@ -0,0 +1,17 @@
|
|||
group("third_party")
|
||||
project("yaml-cpp")
|
||||
uuid("47bfe853-a3f8-4902-921d-d564608ff355")
|
||||
kind("StaticLib")
|
||||
language("C++")
|
||||
|
||||
defines({
|
||||
"_LIB",
|
||||
})
|
||||
includedirs({
|
||||
"yaml-cpp/include/",
|
||||
})
|
||||
recursive_platform_files("yaml-cpp/include/yaml-cpp")
|
||||
recursive_platform_files("yaml-cpp/src")
|
||||
|
||||
filter("platforms:Windows")
|
||||
warnings("Off") -- Too many warnings.
|
|
@ -6,6 +6,7 @@ local function match_platform_files(base_path, base_match)
|
|||
base_path.."/"..base_match..".h",
|
||||
base_path.."/"..base_match..".c",
|
||||
base_path.."/"..base_match..".cc",
|
||||
base_path.."/"..base_match..".cpp",
|
||||
})
|
||||
removefiles({base_path.."/".."**_main.cc"})
|
||||
removefiles({base_path.."/".."**_test.cc"})
|
||||
|
|
Loading…
Reference in New Issue