-
Notifications
You must be signed in to change notification settings - Fork 18
/
.gitignore
155 lines (127 loc) · 2.29 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#vscode
.vscode/
# unix
*.o
*.so
!asm/*.o
# temp scripts used for debugging
*makevs/jdll/*.ijs
jj.ijs
# windows - most output files go to %userprofile%\jbld\jout
# some end up in the project folder and are marked here
# sometimes entire project subfolders are created that should not be in repo
*.sdf
*.opensdf
*.suo
**/jconsole/.vs/
**/jdll/**/.vs/
**/tsdll/**/.vs/
*.ilk
*.pdb
*.exp
# following are no longer required and prevent template folders
# **/jconsole/**/
# **/jdll/**/
# **/tsdll/**/
# windows - need to run with different versions of vs
# following files are in repo for vs2013
# but are not pushed to avoid getting unwanted user specific changes
# clone will have to copy from .template files to work
*.sln*
*.vcxproj*
!*.template
.vs/
# mac
.DS_Store
#android
android/libs/
android/obj/
android/jni/jsrc
android/jni/clapack
android/jni/pcre
android/jni/pcre2
android/jni/tsdll
android/jni/hostdefs
android/jni/netdefs
clapack/
pcre/
release
/test/temp.ijs
# build folders
out/
build/
bin/
make2/
/jlibrary/addons
/jlibrary/bin
/jlibrary/bin32
/jlibrary/tools
# clion's cmake creates cmake-build-release, cmake-build-debug, etc...
cmake-build-*/
# clion's settings folder. keep or not up to you. can be useful for spellcheck etc.
.idea
# QtCreator config files
# A listing of all the files included in the project
*.files
# Include directories
*.includes
# Project configuration settings like predefined Macros
*.config
# Qt Creator settings
*.creator
# User project settings
*.creator.user*
# Qt Creator backups
*.autosave
# Flags for Clang Code Model
*.cxxflags
*.cflags
# Meson Build System files
# subproject directories
/subprojects/*
!/subprojects/*.wrap
# Meson Directories
meson-logs
meson-private
# Meson Files
meson_benchmark_setup.dat
meson_test_setup.dat
sanitycheckcpp.cc # C++ specific
sanitycheckcpp.exe # C++ specific
# Ninja
build.ninja
.ninja_deps
.ninja_logs
# Misc
compile_commands.json
# Prerequisites
*.d
# Precompiled Headers
*.gch
*.pch
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# doxygen
docs/doxygen
docs/latex
docs/html
docs/make.bat
docs/xml
docs/_build
docs/Makefile
#python in clion
venv/*
# Robert's python code
excluded_names.txt
find_replace_macro.py
known_good_build.txt
known_good_cmake.txt
known_good_test.txt
removal_log.md