File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # Include essential top-level files
2+ include CMakeLists.txt
3+ include LICENSE
4+ include MANIFEST.in
5+ include README.md
6+ include pyproject.toml
7+ include setup.py
8+
9+ # Include the cmake and source directories
10+ recursive-include cmake *
11+ recursive-include src *
12+
13+ # Include the entire external directory first
14+ recursive-include external *
15+
16+ # Exclude common unwanted file patterns from .gitignore
17+ global-exclude *.obj *.off *.so *.pyc *.ini
18+ global-exclude *.creator* *.includes *.files *.config
19+ exclude test.ply
20+
21+ # Prune external libraries listed in .gitignore
22+ prune external/embree
23+ prune external/manifold
24+ prune external/simde
25+ prune external/tinyply
26+ prune external/numpyeigen
27+ prune external/igl
28+ prune external/geogram
You can’t perform that action at this time.
0 commit comments