From 12a910aaca3c386d392e5322ede1b9c288bf2359 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Thu, 20 May 2021 13:50:21 +0200 Subject: [PATCH] fix create env order and public git address --- website/docs/dev_build.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/website/docs/dev_build.md b/website/docs/dev_build.md index c5bf1d5c47..2899dbd754 100644 --- a/website/docs/dev_build.md +++ b/website/docs/dev_build.md @@ -26,6 +26,11 @@ This is outline of build steps. Most of them are done automatically via scripts: - On Mac application bundle and dmg image will be created from built code. - On Windows, you can create executable installer with `./tools/build_win_installer.ps1` +### Clone OpenPype repository: +```powershell +git clone --recurse-submodules https://github.com/pypeclub/OpenPype.git +``` + ## Platform specific steps @@ -233,7 +235,8 @@ $ brew install create-dmg #### To build Pype: 1. Run `./tools/create_env.sh` to create virtual environment in `./venv`. -2. Run `./tools/build.sh` to build OpenPype Application bundle in `./build/`. +2. Run `./tools/fetch_thirdparty_libs.sh` to get **ffmpeg**, **oiio** and other tools needed. +3. Run `./tools/build.sh` to build OpenPype Application bundle in `./build/`.