forked from blender/blender
Sergey Sharybin
6481bf32b3
This change makes it so build system and update utilities for Blender builds are using pre-compiled libraries and other resources attached as Git modules instead of using checkout of SVN repositories in the parent folder. The directory layout: ``` * lib/ * darwin_x64/ -> lib-darwin_x64.git * darwin_arm64/ -> lib-darwin_arm64.git * linux_x64/ -> lib-linux_x64.git * windows_x64/ -> lib-windows_x64.git * tests/ * data/ -> blender-test-data.git ``` The changes about configuring the actual Git sub-modules are not included into this patch, as those require repository to actually exist before it can be used. The library and tests data submodules are disabled by default. This means that if someone runs `git submodule update --init` they will not get heavy libraries. The platform-specific and tests related submodules are enabled when using `make update` or `make test`. All the new submodules are tracked: this means that when new commits are done to the submodule, the blender.git repository is to be updated to point them to the new hash. This causes some extra manual work, but it allows to more easily update Blender and its dependencies to known good state when performing operations like bisect. Ref #108978 Co-authored-by: Brecht Van Lommel <brecht@blender.org> Co-authored-by: Ray Molenkamp <github@lazydodo.com> Pull Request: blender/blender#118740
55 lines
786 B
Plaintext
55 lines
786 B
Plaintext
# generic files to ignore
|
|
.*
|
|
|
|
# python temp paths
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# editors
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
*#
|
|
|
|
# Indexes for emacs, vi & others
|
|
TAGS
|
|
tags
|
|
|
|
# QtCreator
|
|
CMakeLists.txt.user
|
|
|
|
# ms-windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# commonly used paths in blender
|
|
/blender.bin
|
|
/BUILD_NOTES.txt
|
|
|
|
# local patches
|
|
/*.patch
|
|
/*.diff
|
|
|
|
# in-source doc-gen
|
|
/doc/doxygen/html/
|
|
/doc/python_api/sphinx-in-tmp/
|
|
/doc/python_api/sphinx-in/
|
|
/doc/python_api/sphinx-out/
|
|
/doc/python_api/rst/bmesh.ops.rst
|
|
|
|
# in-source lib downloads
|
|
/build_files/build_environment/downloads
|
|
|
|
# in-source buildbot signing configuration
|
|
/build_files/buildbot/codesign/config_server.py
|
|
|
|
# smoke simulation noise tile (generated)
|
|
waveletNoiseTile.bin
|
|
|
|
# testing environment
|
|
/Testing
|
|
|
|
# External repositories.
|
|
/tests/benchmarks/
|