Starting from scratch
New project
mkdir porting_guide
cd porting_guide
mkdir external components myproject utils build# init directory as a git repository
git init
# clone SDK into external/c-vertices-sdk
git submodule add https://github.com/vertices-network/c-vertices-sdk external/c-vertices-sdk
# update submodules of the SDK itself
git submodule update --init --recursive
# check content of the SDK
ls external/c-vertices-sdkCMake
The missing link
Last updated
Was this helpful?