-
Notifications
You must be signed in to change notification settings - Fork 55
/
.gitignore
80 lines (69 loc) · 875 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# autotools build method
/autom4te.cache/
/builds/autoconf/
!/builds/autoconf/m4/m4_ax_pkg_check_modules.m4
!/builds/autoconf/liblcf-config.cmake.in
/lcf2xml
/liblcf-*/
.deps/
.libs/
.dirstamp
Makefile.in
aclocal.m4
config.log
config.status
configure
libtool
stamp-h1
*.la
*.lo
# cmake build method
bin/
CMakeCache.txt
CMakeFiles/
*.cmake
!/builds/cmake/Modules/*.cmake
CMakeDoxyfile.in
install_manifest.txt
Testing/
build/
# msvc / Windows
*.vcxproj*
*.sdf
*.ncb
*.psess
*.suo
*.user
*.vsp*
*.lib
*.exe
*.exp
*.ilk
*.pdb
# ninja
.ninja_*
*.ninja
# IntelliJ / CLion
.idea/
# VS Code
.vscode/
.cache/
compile_commands.json
# doxygen generated files
/doc/
# Python generated files
*.pyc
__pycache__/
# other generated files
Makefile
*~
*.a
*.o
*.pc
config.h
liblcf-config.cmake
liblcf-config-version.cmake
# tests
test_runner*
# distribution archives
liblcf-*.tar.*