Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build_files/cmake')
-rwxr-xr-xbuild_files/cmake/example_scripts/cmake_linux_install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/example_scripts/cmake_linux_install.sh b/build_files/cmake/example_scripts/cmake_linux_install.sh
index 6ef50742c42..34bbe104b3b 100755
--- a/build_files/cmake/example_scripts/cmake_linux_install.sh
+++ b/build_files/cmake/example_scripts/cmake_linux_install.sh
@@ -16,7 +16,7 @@ git submodule update --init --recursive
git submodule foreach git checkout master
git submodule foreach git pull --rebase origin master
-# create cmake dir
+# create build dir
mkdir ~/blender-git/build-cmake
cd ~/blender-git/build-cmake
@@ -25,7 +25,7 @@ cd ~/blender-git/build-cmake
cmake ../blender
# make blender, will take some time
-make
+make -j$(nproc)
# link the binary to blenders source directory to run quickly
ln -s ~/blender-git/build-cmake/bin/blender ~/blender-git/blender/blender.bin