-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (47 loc) · 1013 Bytes
/
.gitignore
File metadata and controls
59 lines (47 loc) · 1013 Bytes
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
# ------------------------------------------------------------------------------
# Ignore files that are generated from the repository sources by either building
# the code or running it. These should be the same as the files erased by
# `make distclean`.
#
# Also ignore OS-specific files like .DS_Store on Mac
# ------------------------------------------------------------------------------
# Object, binary, and library files
*.o
/libmiso.*
*.bin
*.so
*.a
# Backup files
*~
# OS-specific: Mac
*.dSYM
.DS_Store
# Editor files
.vscode
# Output mesh files
*.vtk
*.gf
*.pvtu
*.vtu
*.pvd
# Dependence folder
.d
# auto generated documentation files/folders
/doc/CodeDocumentation/
/doc/CodeDocumentation.conf
/doc/CodeDocumentation.html
# ignore build files except for config script
build/*
lib/*
include/*
!build/miso_config.sh
# python wrapper related files
/miso/__pycache__
/miso.egg-info
# smb meshes in the sandbox
sandbox/*.smb
# python related files
*.pyc
dist/*
# openmdao related files
n2.html