File indexing completed on 2024-05-19 04:32:41

0001 #!/bin/sh
0002 
0003 # $1 = path to kst
0004 # $2 = version name, for instance 2.0.4-beta2
0005 
0006 kst_install_prefix=Kst-$2
0007 
0008 cmake $1 -Dkst_merge_files=1 -Dkst_3rdparty_build=1 -Dkst_dataobjects=1 -Dkst_version_string=$2 -Dkst_release=1 -Dkst_install_prefix=$kst_install_prefix
0009 
0010 cd 3rdparty
0011 make -j4
0012 make
0013 cd ..
0014 
0015 make -j4
0016 
0017 make install/strip
0018 
0019 #TODO Why is /build/bin/kst2 added to the dmg?
0020 make package
0021