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:
authorSebastián Barschkis <sebbas@sebbas.org>2021-03-16 18:55:14 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-03-16 19:08:48 +0300
commit970e246ccc11f5c089440b63077ec7b7613e6294 (patch)
tree228ef62c083350a92160104797ce454a228e8b01
parent5ac47cded19e026945f0dcca0b3751753d66f763 (diff)
CMake/deps: Updated deps build requirements prompt for macOS arm64
Building deps on macOS arm64 has slightly different requirements. Belongs to 4b3dcd80698a
-rw-r--r--build_files/build_environment/cmake/check_software.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/build_files/build_environment/cmake/check_software.cmake b/build_files/build_environment/cmake/check_software.cmake
index b942e32c8b7..33c565832d9 100644
--- a/build_files/build_environment/cmake/check_software.cmake
+++ b/build_files/build_environment/cmake/check_software.cmake
@@ -72,9 +72,12 @@ if(UNIX)
"On Debian and Ubuntu:\n"
" apt install autoconf automake libtool yasm tcl ninja-build meson python3-mako\n"
"\n"
- "On macOS (with homebrew):\n"
+ "On macOS Intel (with homebrew):\n"
" brew install autoconf automake bison libtool pkg-config yasm\n"
"\n"
+ "On macOS ARM (with homebrew):\n"
+ " brew install autoconf automake bison flex libtool pkg-config yasm\n"
+ "\n"
"Other platforms:\n"
" Install equivalent packages.\n")
message(FATAL_ERROR "Install missing software before continuing")