1234567891011121314151617181920212223242526 |
- # Exclude everything
- /*
- # Except for default project files
- !/.github
- !/build-aux
- !/cmake
- !/data
- !/*.cpp
- !.clang-format
- !.gersemirc
- !.gitignore
- !buildspec.json
- !CMakeLists.txt
- !CMakePresets.json
- !LICENSE
- !README.md
- # Exclude lock files
- *.lock.json
- # Exclude macOS legacy resource forks
- .DS_Store
- # Exclude CMake build number cache
- /cmake/.CMakeBuildNumber
|