-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
46 lines (38 loc) · 1.26 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Some typical directories for CMake configurations
# and builds.
build/
Debug/
Release/
# A convention I have for CMake configuration and
# builds that are specific to iOS. iOS configs
# and builds use a different toolchain, hence a
# different config and build directory.
build-ios/
# Default directories where CLion stores CMake
# configurations and builds.
cmake-build-debug/
cmake-build-release/
# 'editables' are downloaded repositories that I
# maintain or fork; i.e. I want to be able to edit
# them often or sometimes.
editables/
# 'deps' are downloaded repositories that I don't
# maintain or fork. So far, I have never made any
# changes to them; not ones that I wanted to persist
# in any case.
deps/
# JetBrains CLion generates this directory whenever
# you open a project. I recommend not to version it.
.idea/
# Generated by CMakeLists.txt
src/main/version.h
# Symlink generated by CMakeLists.txt, hence we
# don't version this. Note that whenever a source
# file is removed, added, or renamed in the project,
# this file should be regenerated by running cmake,
# if you want accurate LSP functionality.
# This file can be used by YouCompleteMe, and
# probably other LSP clients too.
compile_commands.json
# clangd background index for the project
.cache/clangd/