-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (59 loc) · 840 Bytes
/
.gitignore
File metadata and controls
68 lines (59 loc) · 840 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
59
60
61
62
63
64
65
66
67
68
# Ignore build directories
build/
Build/
cmake-build-*/ # For CMake-generated builds
*_build/
# Ignore Qt Creator files
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.creator.*
*.autosave
*.qmlc
*.jsc
.qtc_clangd/
.qt/
# Ignore CMake generated files
CMakeLists.txt.user
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
install_manifest.txt
# Ignore object files and binaries
*.obj
*.o
*.so
*.dll
*.dylib
*.lib
*.a
*.exe
*.out
*.app
# Ignore IDE-specific files
.vscode/
.idea/
*.iml
# Ignore logs and temporary files
*.log
*.temp
*.bak
*.swp
*.swo
# Ignore Vulkan validation layers cache (if applicable)
.vulkan_sdk/
.cache/
# Ignore compiled resources
*.qrc.*
moc_*.cpp
ui_*.h
qrc_*.cpp
# Ignore temporary image viewer project output
*.bmp.temp
*.bmp.cache
# Ignore additional system files
.DS_Store
Thumbs.db
*.~lock.*