forked from ifumagalli/dolfin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
130 lines (109 loc) · 2.09 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
# Compiled source
*.o
*.Plo
*.Po
*.lo
*.la
*.a
*.os
*.pyc
*.so
*.pc
*.pyd
*.def
*.dll
*.exe
*.dylib
dolfin/libdolfin.so*
# FFC generated code in library
dolfin/ale/Poisson*D.h
# FFC generated code in benchmarks
bench/fem/convergence/cpp/Poisson2D_1.cpp
bench/fem/convergence/cpp/Poisson2D_2.cpp
bench/fem/convergence/cpp/Poisson2D_3.cpp
bench/fem/convergence/cpp/Poisson2D_4.cpp
bench/fem/convergence/cpp/Poisson2D_5.cpp
bench/fem/convergence/cpp/Poisson3D_1.cpp
bench/fem/convergence/cpp/Poisson3D_2.cpp
bench/fem/convergence/cpp/Poisson3D_3.cpp
bench/fem/convergence/cpp/Poisson3D_4.cpp
# Log files
*.log
# Install directory
/local
/local.*
# SWIG generated files
dolfin/swig/**/**/*.py
dolfin/swig/**/**/*.h
dolfin/swig/**/**/*.cc
dolfin/swig/**/**/*.cxx
dolfin/swig/**/**/module.i
dolfin/swig/**/**/dependencies.txt
swigimportinfo.py
# Documentation
docstrings.i
# Configuration files
dolfin.conf
dolfin-version
dolfin-config.cmake
DOLFINConfig.cmake
DOLFINConfigVersion.cmake
UseDOLFIN.cmake
dolfin-config-version.cmake
# Demos and tests
build_demo.*
test_*_tempdir
test/unit/mesh/{cpp,python}/*.{xml,m}
test/unit/parameter/{cpp,python}/*.{xml,xml.gz}
bench/**/**/cpp/forms/*.h
bench/**/**/cpp/*.h
test/unit/**/python/*.xml
test/unit/**/cpp/*.xml
test/unit/function/cpp/Projection.h
test/unit/la/cpp/forms/ReactionDiffusion.h
test/unit/la/cpp/forms/ReactionDiffusionAction.h
test/unit/multimesh/cpp/MultiMeshStokes2D.h
test/unit/.cache/
# FFC generated demo files
demo/**/**/cpp/*.h
demo/documented/cahn-hilliard/cpp/CahnHilliard2D.cpp
demo/documented/cahn-hilliard/cpp/CahnHilliard3D.cpp
# QT generated code
moc_*
# Temporaries
*~
# Compressed files
*.xz
*.gz
*.zs-old
# Data files
*.pvd
*.pvtu
*.vtu
*.h5
*.xdmf
*.bin
# CMake and Make file
CMakeLists.txt
!/CMakeLists.txt
!dolfin/CMakeLists.txt
!bench/CMakeLists.txt
!dolfin/swig/CMakeLists.txt
!doc/CMakeLists.txt
!demo/CMakeLists.txt
!test/CMakeLists.txt
CMakeCache.txt
CMakeFiles
cmake_install.cmake
cmake_uninstall.cmake
Makefile
install_manifest.txt
# Local build files
/build
/build.*/
# OS X files
.DS_Store
.DS_Store?
# Eclipse files
.*project
.settings