Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Mar 26, 2018
1 parent bd9d874 commit 491d083
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/conda/libstatiskit_stl-dev/bld.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
echo ON

scons autowig --prefix=%LIBRARY_PREFIX% -j%CPU_COUNT% --autowig-no-wrappers
scons cpp-dev --prefix=%LIBRARY_PREFIX% -j%CPU_COUNT%
if errorlevel 1 exit 1

echo OFF
9 changes: 7 additions & 2 deletions bin/conda/libstatiskit_stl-dev/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
set -ve

echo $SRC_DIR
scons autowig --prefix=$PREFIX -j$CPU_COUNT --autowig-no-wrappers
if [ "$(uname)" == "Darwin" ]; then
scons cpp-dev --prefix=$PREFIX -j$CPU_COUNT
fi

if [ "$(uname)" == "Linux" ]; then
scons autowig --prefix=$PREFIX -j$CPU_COUNT --autowig-no-wrappers
fi

set +ve

0 comments on commit 491d083

Please sign in to comment.