Skip to content

Commit

Permalink
Added git submodule cnpy
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroperrusi committed Feb 4, 2019
1 parent 8587792 commit 9aa008a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Editeurs ----------------------
.vscode/

# CMake -------------------------
build/

# OSX ---------------------------
.DS_Store

Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "libs/cnpy"]
path = libs/cnpy
url = https://github.com/pedroperrusi/cnpy.git
1 change: 1 addition & 0 deletions libs/cnpy
Submodule cnpy added at 4e8810
11 changes: 11 additions & 0 deletions scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

echo 'Installing cnpy module...'

cd libs/cnpy
# create build directory if it doesnt exist
mkdir -p build
cd build
cmake ../
make
make install

0 comments on commit 9aa008a

Please sign in to comment.