1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-11-19 20:42:50 +01:00

Add comments

This commit is contained in:
q-posev 2022-05-03 15:14:12 +02:00
parent a68b66e142
commit 1be899d0c5

4
python/manual_install_pyqmckl.sh Normal file → Executable file
View File

@ -3,6 +3,7 @@
set -x set -x
set -e set -e
# swig pre-processing
./build_pyqmckl.sh ./build_pyqmckl.sh
cd src/ cd src/
@ -15,9 +16,10 @@ cc -shared pyqmckl_wrap.o `pkg-config --libs qmckl` -o _pyqmckl.so
cd .. cd ..
# test # copy the produced files into the test dir
cp src/_pyqmckl.so src/pyqmckl.py test/ cp src/_pyqmckl.so src/pyqmckl.py test/
# run tests
cd test/ cd test/
python test_api.py python test_api.py
cd .. cd ..