From 1723df9bf38a534b4bd024a97f7e9a7865701edd Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Wed, 6 Jan 2021 15:26:45 -0800 Subject: [PATCH] Minor tweak (for clarity) of build instructions in README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 077235f..5511226 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,15 @@ Downloads: [download.zerotier.com/dist/sdk](https://download.zerotier.com/dist/s ## Building on Linux, macOS *Requires [CMake](https://cmake.org/download/), [Clang](https://releases.llvm.org/download.html) is recommended* ``` -make update && make patch && make host_release CC=clang CXX=clang++ +git submodule update --init +make host_release CC=clang CXX=clang++ ``` ## Building on Windows *Requires [CMake](https://cmake.org/download/) and [PowerShell](https://github.com/powershell/powershell)* ``` +git submodule update --init . ./dist.ps1 Build-Library -BuildType "Release" -Arch "Win32|x64|ARM|ARM64" -LanguageBinding "none|csharp" ```