mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-08 07:03:43 +01:00
14 lines
305 B
Plaintext
14 lines
305 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Check if the QP_ROOT environment variable is set.
|
||
|
if [[ -z ${QP_ROOT} ]]
|
||
|
then
|
||
|
print "The QP_ROOT environment variable is not set."
|
||
|
print "Please reload the quantum_package.rc file."
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
pkg-config --libs trexio > LIB
|
||
|
|
||
|
ln --symbolic ${PWD}/qp_import_trexio.py $QP_ROOT/scripts
|