Skip to content

Commit

Permalink
ppi_networkit build script
Browse files Browse the repository at this point in the history
  • Loading branch information
patflick committed Sep 24, 2014
1 parent 15d760f commit eb2625f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

# steps to build the ppi_networkit module
git submodule init
git submodule update

# build NetworKit and the Subgraphs library
echo "#######################################################################"
echo "# Building NetworKit and Subgraphs library #"
echo "#######################################################################"

cd ppi_networkit
mkdir build
cd build
cmake ../
make
cd ..

# build the cython module `ppi_networkit`
echo "#######################################################################"
echo "# Building cython extension #"
echo "#######################################################################"

cd cython
python3 setup.py build_ext --inplace


cd ..
cd ..

0 comments on commit eb2625f

Please sign in to comment.