mirror of https://github.com/openXC7/prjxray.git
Import github.com/jbeder/yaml-cpp
Signed-off-by: Rick Altherr <kc8apf@kc8apf.net> Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
parent
e85e51514d
commit
c1790df562
|
|
@ -10,3 +10,6 @@
|
||||||
[submodule "third_party/gflags"]
|
[submodule "third_party/gflags"]
|
||||||
path = third_party/gflags
|
path = third_party/gflags
|
||||||
url = https://github.com/gflags/gflags
|
url = https://github.com/gflags/gflags
|
||||||
|
[submodule "third_party/yaml-cpp"]
|
||||||
|
path = third_party/yaml-cpp
|
||||||
|
url = https://github.com/jbeder/yaml-cpp.git
|
||||||
|
|
|
||||||
|
|
@ -22,5 +22,11 @@ add_subdirectory(third_party/gflags EXCLUDE_FROM_ALL)
|
||||||
add_subdirectory(third_party/cctz EXCLUDE_FROM_ALL)
|
add_subdirectory(third_party/cctz EXCLUDE_FROM_ALL)
|
||||||
add_subdirectory(third_party/abseil-cpp EXCLUDE_FROM_ALL)
|
add_subdirectory(third_party/abseil-cpp EXCLUDE_FROM_ALL)
|
||||||
|
|
||||||
|
option(YAML_CPP_BUILD_TESTS "" OFF)
|
||||||
|
add_subdirectory(third_party/yaml-cpp EXCLUDE_FROM_ALL)
|
||||||
|
target_include_directories(yaml-cpp PUBLIC
|
||||||
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/third_party/yaml-cpp/include>
|
||||||
|
)
|
||||||
|
|
||||||
add_subdirectory(lib)
|
add_subdirectory(lib)
|
||||||
add_subdirectory(tools)
|
add_subdirectory(tools)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 86ae3a5aa7e2109d849b2df89176d6432a35265d
|
||||||
Loading…
Reference in New Issue