diff --git a/.gitmodules b/.gitmodules index fe00be427..81f7ec558 100644 --- a/.gitmodules +++ b/.gitmodules @@ -25,9 +25,6 @@ [submodule "third_party/premake-export-compile-commands"] path = third_party/premake-export-compile-commands url = https://github.com/xenia-project/premake-export-compile-commands.git -[submodule "third_party/yaml-cpp"] - path = third_party/yaml-cpp - url = https://github.com/jbeder/yaml-cpp.git [submodule "third_party/spirv-headers"] path = third_party/spirv-headers url = https://github.com/KhronosGroup/SPIRV-Headers.git diff --git a/premake5.lua b/premake5.lua index 91b8c2342..28fdba89e 100644 --- a/premake5.lua +++ b/premake5.lua @@ -222,7 +222,6 @@ solution("xenia") include("third_party/spirv-tools.lua") include("third_party/volk.lua") include("third_party/xxhash.lua") - include("third_party/yaml-cpp.lua") include("src/xenia") include("src/xenia/app") diff --git a/src/xenia/debug/ui/debug_window.cc b/src/xenia/debug/ui/debug_window.cc index 5d9472359..2fd758d24 100644 --- a/src/xenia/debug/ui/debug_window.cc +++ b/src/xenia/debug/ui/debug_window.cc @@ -2,7 +2,7 @@ ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** - * Copyright 2015 Ben Vanik. All rights reserved. * + * Copyright 2020 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ @@ -17,7 +17,6 @@ #include "third_party/capstone/include/capstone/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" diff --git a/src/xenia/debug/ui/premake5.lua b/src/xenia/debug/ui/premake5.lua index 84ca9bbd8..7503528b3 100644 --- a/src/xenia/debug/ui/premake5.lua +++ b/src/xenia/debug/ui/premake5.lua @@ -11,11 +11,9 @@ project("xenia-debug-ui") "xenia-base", "xenia-cpu", "xenia-ui", - "yaml-cpp", }) defines({ }) includedirs({ - project_root.."/third_party/yaml-cpp/include/", }) local_platform_files() diff --git a/third_party/yaml-cpp b/third_party/yaml-cpp deleted file mode 160000 index e92321aee..000000000 --- a/third_party/yaml-cpp +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e92321aee52fd27566601f9cca53ba90b41e15c1 diff --git a/third_party/yaml-cpp.lua b/third_party/yaml-cpp.lua deleted file mode 100644 index 138e99a46..000000000 --- a/third_party/yaml-cpp.lua +++ /dev/null @@ -1,17 +0,0 @@ -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.