diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-05 15:25:41 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-05 15:25:41 +0100 |
commit | 2a2eb0e083991753a8d9247b63fea8f37559a6d7 (patch) | |
tree | 315c7f260a84e0564d5928bc9c2d3641a38e8680 /Wrappers/Python | |
parent | e6cb12cc6603cff6e8837f7a922a740fb2ee3b02 (diff) | |
download | regularization-2a2eb0e083991753a8d9247b63fea8f37559a6d7.tar.gz regularization-2a2eb0e083991753a8d9247b63fea8f37559a6d7.tar.bz2 regularization-2a2eb0e083991753a8d9247b63fea8f37559a6d7.tar.xz regularization-2a2eb0e083991753a8d9247b63fea8f37559a6d7.zip |
updated conda recipe build.sh
Diffstat (limited to 'Wrappers/Python')
-rw-r--r-- | Wrappers/Python/conda-recipe/build.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Wrappers/Python/conda-recipe/build.sh b/Wrappers/Python/conda-recipe/build.sh index 8b05663..ff6583a 100644 --- a/Wrappers/Python/conda-recipe/build.sh +++ b/Wrappers/Python/conda-recipe/build.sh @@ -7,13 +7,14 @@ mkdir "$SRC_DIR/ccpi" cp -rv "$RECIPE_DIR/../.." "$SRC_DIR/ccpi" cp -rv "$RECIPE_DIR/../../../Core" "$SRC_DIR/Core" -cd $SRC_DIR/ccpi/Python +cd $SRC_DIR -echo "$SRC_DIR/ccpi/Python" +cmake -G "NMake Makefiles" $RECIPE_DIR/../../../ -DBUILD_WRAPPERS=ON -DCONDA_BUILD=ON -DCMAKE_BUILD_TYPE="Release" -DLIBRARY_LIB=$CONDA_PREFIX/lib -DLIBRARY_INC=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$PREFIX/Library" -cmake . -$PYTHON setup-regularisers.py build_ext -$PYTHON setup-regularisers.py install +make install + +#$PYTHON setup-regularisers.py build_ext +#$PYTHON setup-regularisers.py install |