diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-05 16:28:39 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-05 16:28:39 +0100 |
commit | c025620ae1d6f4bfcf823de716336277a2ecb621 (patch) | |
tree | b81cec3b57920987811a2719af0028162de2507a /Wrappers/Python/conda-recipe | |
parent | 89d9b706aa5f6dfe3724e6bdb628f5c95e7425f6 (diff) | |
download | regularization-c025620ae1d6f4bfcf823de716336277a2ecb621.tar.gz regularization-c025620ae1d6f4bfcf823de716336277a2ecb621.tar.bz2 regularization-c025620ae1d6f4bfcf823de716336277a2ecb621.tar.xz regularization-c025620ae1d6f4bfcf823de716336277a2ecb621.zip |
working recipe for Linux GPU. Needs test
Diffstat (limited to 'Wrappers/Python/conda-recipe')
-rw-r--r-- | Wrappers/Python/conda-recipe/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/conda-recipe/build.sh b/Wrappers/Python/conda-recipe/build.sh index 9706301..1247707 100644 --- a/Wrappers/Python/conda-recipe/build.sh +++ b/Wrappers/Python/conda-recipe/build.sh @@ -9,7 +9,7 @@ cp -rv "$RECIPE_DIR/../../../Core" "$SRC_DIR/Core" cd $SRC_DIR -cmake -G "Unix 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 +cmake -G "Unix Makefiles" $RECIPE_DIR/../../../ -DBUILD_PYTHON_WRAPPERS=ON -DCONDA_BUILD=ON -DBUILD_CUDA=ON -DCMAKE_BUILD_TYPE="Release" -DLIBRARY_LIB=$CONDA_PREFIX/lib -DLIBRARY_INC=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$PREFIX make install |