From 66652ae12efc06a2df1fb4d5a9a459b9eabb5595 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 20 Jun 2024 02:30:22 +0200 Subject: [PATCH] Cleanup: Fix outdated comments about library dependencies --- build_files/build_environment/CMakeLists.txt | 24 +++++--------------- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/build_files/build_environment/CMakeLists.txt b/build_files/build_environment/CMakeLists.txt index 71dd50ae338..f924448c78e 100644 --- a/build_files/build_environment/CMakeLists.txt +++ b/build_files/build_environment/CMakeLists.txt @@ -4,25 +4,13 @@ ################################################################################################## # -# This is a build system used by platform maintainers to build library dependencies on -# Windows, macOS and Linux. +# This is a build system used by platform maintainers to build library dependencies. +# For users building Blender, we recommend using the precompiled libraries from lib/ +# on all platforms. # -# For users building Blender, we recommend using the precompiled libraries from lib/ on -# Windows and macOS, and install_deps.sh on Linux. -# -# WINDOWS USAGE: -# Don't call this cmake file yourself, use build_deps.cmd -# build_deps 2013 x64 / build_deps 2013 x86 -# build_deps 2015 x64 / build_deps 2015 x86 -# -# MAC OS X USAGE: -# Install with homebrew: brew install autoconf automake bison cmake libtool pkg-config yasm -# Additional requirements for macOS arm64: brew install flex -# Run "make deps" from main Blender directory -# -# LINUX USAGE: -# Install compiler cmake autoconf automake libtool yasm tcl -# Run "make deps" from main Blender directory +# This CMake project is usually built through wrappers: +# * Windows: build_files/build_environment/windows/build_deps.cmd +# * macOS and Linux: "make deps" from the blender directory # ##################################################################################################