Remove unused yaml-cpp.
This commit is contained in:
parent
64539621b4
commit
8efa35d996
|
@ -25,9 +25,6 @@
|
||||||
[submodule "third_party/premake-export-compile-commands"]
|
[submodule "third_party/premake-export-compile-commands"]
|
||||||
path = third_party/premake-export-compile-commands
|
path = third_party/premake-export-compile-commands
|
||||||
url = https://github.com/xenia-project/premake-export-compile-commands.git
|
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"]
|
[submodule "third_party/spirv-headers"]
|
||||||
path = third_party/spirv-headers
|
path = third_party/spirv-headers
|
||||||
url = https://github.com/KhronosGroup/SPIRV-Headers.git
|
url = https://github.com/KhronosGroup/SPIRV-Headers.git
|
||||||
|
|
|
@ -222,7 +222,6 @@ solution("xenia")
|
||||||
include("third_party/spirv-tools.lua")
|
include("third_party/spirv-tools.lua")
|
||||||
include("third_party/volk.lua")
|
include("third_party/volk.lua")
|
||||||
include("third_party/xxhash.lua")
|
include("third_party/xxhash.lua")
|
||||||
include("third_party/yaml-cpp.lua")
|
|
||||||
|
|
||||||
include("src/xenia")
|
include("src/xenia")
|
||||||
include("src/xenia/app")
|
include("src/xenia/app")
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
******************************************************************************
|
******************************************************************************
|
||||||
* Xenia : Xbox 360 Emulator Research Project *
|
* 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. *
|
* 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/capstone/include/capstone/x86.h"
|
||||||
#include "third_party/imgui/imgui.h"
|
#include "third_party/imgui/imgui.h"
|
||||||
#include "third_party/imgui/imgui_internal.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/clock.h"
|
||||||
#include "xenia/base/logging.h"
|
#include "xenia/base/logging.h"
|
||||||
#include "xenia/base/math.h"
|
#include "xenia/base/math.h"
|
||||||
|
|
|
@ -11,11 +11,9 @@ project("xenia-debug-ui")
|
||||||
"xenia-base",
|
"xenia-base",
|
||||||
"xenia-cpu",
|
"xenia-cpu",
|
||||||
"xenia-ui",
|
"xenia-ui",
|
||||||
"yaml-cpp",
|
|
||||||
})
|
})
|
||||||
defines({
|
defines({
|
||||||
})
|
})
|
||||||
includedirs({
|
includedirs({
|
||||||
project_root.."/third_party/yaml-cpp/include/",
|
|
||||||
})
|
})
|
||||||
local_platform_files()
|
local_platform_files()
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit e92321aee52fd27566601f9cca53ba90b41e15c1
|
|
|
@ -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.
|
|
Loading…
Reference in New Issue