-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (71 loc) · 1.48 KB
/
.gitignore
File metadata and controls
83 lines (71 loc) · 1.48 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Build directories - NEVER build in root directory
build/
cmake-build-debug/
cmake-build-release/
cmake-build-*/
dist/
install/
# Root-level build artifacts (should NEVER exist - always build in build/ directory)
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
*.o.d
*.d
lib*.a
libtpch_core.a
# Build artifacts
*.o
*.a
*.so
*.dylib
*.dll
*.lib
*.obj
# CMake build artifacts in any subdirectory
**/CMakeFiles/
**/cmake_install.cmake
**/CTestTestfile.cmake
# Build artifacts in examples/ subdirectory (CMake output)
examples/Makefile
examples/*.o
examples/*.o.d
examples/*.d
# Build artifacts in third_party subdirectories
third_party/dbgen/Makefile
# Executables (generated from examples and main)
/tpch_benchmark
/examples/simple_arrow_parquet
/examples/simple_csv
/examples/simple_orc
/examples/async_io_demo
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
*.user
*.code-workspace
# Output files
*.parquet
*.orc
*.csv
data/
# Generated files
__pycache__/
*.pyc
# Package manager artifacts (should not be committed)
*.deb
*.rpm
# Root-level documentation and text files (except README.md)
/*.md
!README.md
/*.txt
# Rust build artifacts
# Note: Cargo target directory should be in CMAKE_BINARY_DIR (e.g., build/rust/)
# NOT in the source tree. Ignore any in-source target/ directories.
third_party/lance-ffi/target/
# Note: Project-specific Cargo.lock files (e.g., third_party/lance-ffi/Cargo.lock) ARE committed
# Only a root-level Cargo.lock would be ignored (if it existed)