1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
This commit is contained in:
Shlomi Fish 2019-04-28 21:01:48 +03:00
parent affc84724d
commit a2a4806400

View file

@ -6,20 +6,20 @@
# Distributed under terms of the MIT license.
#
set -e -x
(
a="`pwd`"
cd kcardgame
git clone git://anongit.kde.org/kpat
mkdir build-kpat/
k="`pwd`"
cd build-kpat
cmake -DCMAKE_BUILD_TYPE=Debug ../kpat
make
cd ..
mkdir b
cd b
cmake ../binding-example/
make
set -e -x
a="`pwd`"
cd kcardgame
git clone git://anongit.kde.org/kpat
mkdir build-kpat/
k="`pwd`"
cd build-kpat
cmake -DCMAKE_BUILD_TYPE=Debug ../kpat
make
cd ..
mkdir b
cd b
cmake ../binding-example/
make
) || true
export PYTHONPATH=$PWD/kcardgame/b
export PYTHONPATH="`pwd`/kcardgame/b"