mirror of https://github.com/KLayout/klayout.git
Backward compatibility of build.sh call - qt5 and qt4 options are accepted but ingored
This commit is contained in:
parent
3a2d44bd12
commit
49e5dffa99
8
build.sh
8
build.sh
|
|
@ -205,6 +205,12 @@ while [ "$*" != "" ]; do
|
||||||
-libexpat)
|
-libexpat)
|
||||||
HAVE_EXPAT=1
|
HAVE_EXPAT=1
|
||||||
;;
|
;;
|
||||||
|
-qt5)
|
||||||
|
echo "*** WARNING: -qt5 option is ignored - Qt version is auto-detected now."
|
||||||
|
;;
|
||||||
|
-qt4)
|
||||||
|
echo "*** WARNING: -qt4 option is ignored - Qt version is auto-detected now."
|
||||||
|
;;
|
||||||
-option)
|
-option)
|
||||||
MAKE_OPT="$MAKE_OPT $1"
|
MAKE_OPT="$MAKE_OPT $1"
|
||||||
shift
|
shift
|
||||||
|
|
@ -243,8 +249,6 @@ while [ "$*" != "" ]; do
|
||||||
echo ""
|
echo ""
|
||||||
echo "Special options (usually auto-selected from ruby/python/Qt installation):"
|
echo "Special options (usually auto-selected from ruby/python/Qt installation):"
|
||||||
echo ""
|
echo ""
|
||||||
echo " -qt4|-qt5 Use Qt4 or Qt5 API [default: auto detect]"
|
|
||||||
echo ""
|
|
||||||
echo " -rblib <file> Location of the .so/.dll to link for Ruby support"
|
echo " -rblib <file> Location of the .so/.dll to link for Ruby support"
|
||||||
echo " -rbinc <dir> Location of the Ruby headers (in particular 'ruby.h')"
|
echo " -rbinc <dir> Location of the Ruby headers (in particular 'ruby.h')"
|
||||||
echo " -rbinc and -rblib must be set to enable Ruby support"
|
echo " -rbinc and -rblib must be set to enable Ruby support"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue