-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
29 lines (22 loc) · 854 Bytes
/
.gitignore
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
#
# /.gitignore
# Originally came from a slimmed down github template,
# made less stupid (more centralized to CMake) now.
# Feel free to steal this for your CMake project that you're using VS with.
#
# Visual Studio 2015/2017/2019/... cache/options directory
.vs/*
# but keep launch.vs.json in the repository so people can
# just select the debug config (provided they've installed the project) and then it's all ready to go
!.vs/launch.vs.json
# Since the VS CMake tools just use this directory, this is the only rule we *need* to have.
/out
# .. But we also ignore /build as many people use that as their directory for out-of-tree CMake building.
/build
# Doxygen output so that VS file watcher doesn't go completely crazy
/html
# ignore CLion
/.idea
/cmake-build-*
# As well as their compressed equlivants.
/**/*.7z