Skip to content

Commit c041464

Browse files
authored
Merge pull request #21 from dengwirda/dev
Update bindings for jigsaw-0.9.14.xx
2 parents 9c4552c + ebb6002 commit c041464

File tree

21 files changed

+943
-865
lines changed

21 files changed

+943
-865
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# jigsaw things
2+
*
3+
!/**/
4+
!*.*
5+
*.exe
6+
*.dll
7+
*.so
8+
*.dylib
9+
cache/*.log
10+
cache/*.jig
11+
cache/*.msh
12+
13+
# matlab things
14+
*.m~
15+
*.asv
16+
*.mex*
17+
octave-workspace
18+
19+
# data files, etc
20+
*.nc
21+
*.grd
22+
*.vtk
23+
*.off
24+
*.obj
25+
*.stl

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: matlab
2+
3+
os: linux
4+
addons:
5+
apt:
6+
sources:
7+
- ubuntu-toolchain-r-test
8+
packages:
9+
- gcc-8
10+
- g++-8
11+
12+
matlab: latest
13+
script:
14+
- export CC=gcc-8
15+
- export CXX=g++-8
16+
- matlab -batch 'compile; example(-1);'

0 commit comments

Comments
 (0)