-
Notifications
You must be signed in to change notification settings - Fork 25
/
.gitignore
59 lines (44 loc) · 1001 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
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
# the default directory for building
build/
build-*/
# some scripts copied to build directory. need to ignore them if someone does "make" in top dir instead in build/
./rundevel.sh
./run-safe-mem
./run-safe-thread-ub
./valgrind_log_watch
./valgrind_with_log_kill
# temporary var files, including created by running-in-place program
# especially for developer tools, script
vartmp/
# mo compiled gettext files
# the scripts like ./do and ./install will rebuild this translations on their own if they need them
share/locale/*/LC_MESSAGES/*.mo
# directories copied from source
# (the source is e.g. git submodule but in other location)
# mac
.DS_Store
# also other libs
build_extra/
# fftw wisdom files
data/
# build
*.elf
*.a
# build / submodules
CMakeCache.txt
CMakeFiles/
Makefile
cmake_install.cmake
googletest/
jsoncpp/
sodiumpp/
# KDevelop Ignore
.kdev4/
compile_commands.json
*.kdev4
# QT-Creator Ignore
CMakeLists.txt.user
# produced by CMake/Cotire
*cotire.cmake
# hiden files
.*