-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (35 loc) · 757 Bytes
/
.gitignore
File metadata and controls
42 lines (35 loc) · 757 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
# building...
/[Bb]uild/
# CMake...
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
# Git...
# ignore backup files that get created by merge tool
*.orig
# Perl...
# ignore backup files that get created by Perl search-and-replace
*.bak
# Visual Studio...
# ignore this folder that can get auto-generated by the built-in CMake extension when you switch to folder view
.vs/
# Visual Studio Code...
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
# CUSTOM RULES...
# force track everything recursively in deps/
!deps/**