-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (51 loc) · 692 Bytes
/
Copy path.gitignore
File metadata and controls
58 lines (51 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Build directories
/build/
/build-*/
/out/
/dist/
/release-dist/
/wheelhouse/
# CMake out-of-source and accidental in-source build artifacts
CMakeCache.txt
cmake_install.cmake
compile_commands.json
CTestTestfile.cmake
Makefile
install_manifest.txt
CMakeFiles/
Testing/
# Native compilation outputs
*.o
*.obj
*.lo
*.la
*.a
*.lib
*.so
*.so.*
*.dylib
*.dll
*.exe
*.out
# Python caches
__pycache__/
*.py[cod]
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Virtual environments
.venv/
venv/
env/
# IDE and local tooling
.vscode/
.idea/
.VSCodeCounter/
# Local-only GitHub Actions helpers
.github/workflows/publish-pypi.yml
.github/workflows/wheels.yml
# Editor temp files
*.swp
*.swo
*~