From fe71aef64d7c9e1e35a614721acda513bb785c2a Mon Sep 17 00:00:00 2001 From: "Yevhenii Dementieiev (GitHub)" <57259850+ydementieiev@users.noreply.github.com> Date: Wed, 29 Jan 2020 19:39:37 +0200 Subject: Update jsoncpp library (#3155) * Delete old version of jsoncpp lib and add new like submodule, change deprecated interface for new. * Logs output without extra special symbols * fixup! Delete old version of jsoncpp lib and add new like submodule, change deprecated interface for new. --- .gitmodules | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitmodules (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..87ce89ed75 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "src/3rd_party-static/jsoncpp"] + path = src/3rd_party-static/jsoncpp + url = https://github.com/open-source-parsers/jsoncpp.git + branch = 1.9.2 -- cgit v1.2.1 From 88c73e25c957cf5eae521688d74064ae8429fb8c Mon Sep 17 00:00:00 2001 From: Vladyslav Mustafin Date: Thu, 6 Feb 2020 21:23:23 +0200 Subject: #3211 [SDL 0234] Proxy Library RPC Generation (#3213) * #3211 [SDL 0234] Proxy Library RPC Generation * Split existing `InterfaceGenerator` into `InterfaceParser` and `InterfaceGenerator` * Moved InterfaceParser into `smartdevicelink/rpc_spec` * Rejoined `InterfaceParser` as `tools/rpc_spec` Git submodule from `smartdevicelink/rpc_spec` * Refactored `InterfaceGenerator` to use Parser from `tools/rpc_spec` Git submodule and be compatible with Python 3.5 * Replaced url SSH to HTTPS in submodule * refactoring according to comments in pull/202 * move common parsers to rpc_spec repo * change cmake argument * fix cmake argument list * fix cmake argument list * fix cmake argument list * small refactoring as requested in code review * adding *.xsd * adding *.xsd * xmlschema dependency added for python interface generator * align changes from parser rpc_spec * align changes from parser rpc_spec * align with rpc_spec * moved xmlschema python dependency installation to build script * installing all python requirements * Corrected requirements file * Additional dependencies for requirements * Correcting requirements * adding jsoncpp submodule * fixing unit tests * fixing unit tests * rename CodeFormatAndQuality * updated rpc_spec reference Co-authored-by: Aleksandr Mishchenko Co-authored-by: Kostiantyn Sologubov --- .gitmodules | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules index 87ce89ed75..46d4acddec 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,7 @@ path = src/3rd_party-static/jsoncpp url = https://github.com/open-source-parsers/jsoncpp.git branch = 1.9.2 +[submodule "tools/rpc_spec"] + path = tools/rpc_spec + url = https://github.com/smartdevicelink/rpc_spec.git + branch = develop -- cgit v1.2.1