From 3d3a0958fad475c6b0493ad85459e1c04ba4ba62 Mon Sep 17 00:00:00 2001 From: Edoardo Pasca Date: Fri, 6 Dec 2019 17:37:35 +0000 Subject: C lib (#458) C library implemented with optimised axpy fucntions and gradient operator in c --- recipe/build.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 recipe/build.sh (limited to 'recipe/build.sh') diff --git a/recipe/build.sh b/recipe/build.sh new file mode 100644 index 0000000..22cfae8 --- /dev/null +++ b/recipe/build.sh @@ -0,0 +1,24 @@ +if [ -z "$CIL_VERSION" ]; then + echo "Need to set CIL_VERSION" + exit 1 +fi +# mkdir ${SRC_DIR}/ccpi +mkdir -p ${SRC_DIR}/ccpi/Wrappers/Python +cp -r "${RECIPE_DIR}/../Wrappers/Python/test" ${SRC_DIR}/ccpi/Wrappers/Python + +# cd ${SRC_DIR}/ccpi/Wrappers/Python +# $PYTHON setup.py install + + +mkdir ${SRC_DIR}/build_framework +#cp -r "${RECIPE_DIR}/../" ${SRC_DIR}/build_framework + +cd ${SRC_DIR}/build_framework +cmake ${RECIPE_DIR}/../ -DCONDA_BUILD=ON \ + -DCMAKE_BUILD_TYPE="Release"\ + -DLIBRARY_LIB=$CONDA_PREFIX/lib \ + -DLIBRARY_INC=$CONDA_PREFIX \ + -DCMAKE_INSTALL_PREFIX=$PREFIX + +make install +# $PYTHON setup.py install -- cgit v1.2.3