1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

convert to Release CMAKE_BUILD_TYPE

This commit is contained in:
Shlomi Fish 2019-04-28 21:48:01 +03:00
parent 76cc5243f1
commit a13f1fc9c6

View file

@ -8,6 +8,12 @@
(
set -e -x
build_type="Release"
build_args="cmake -DCMAKE_BUILD_TYPE=$build_type"
build()
{
$build_args "$@"
}
a="`pwd`"
cd kcardgame
# git clone git://anongit.kde.org/kpat
@ -15,12 +21,12 @@
mkdir build-kpat/
k="`pwd`"
cd build-kpat
cmake -DCMAKE_BUILD_TYPE=Debug ../kpat
build ../kpat
make
cd ..
mkdir b
cd b
cmake -DCMAKE_BUILD_TYPE=Debug ../binding-example/
build ../binding-example/
make
) || true
dir="`pwd`/kcardgame/b"