lqt-config.in
来自「这个库实现了录象功能」· IN 代码 · 共 79 行
IN
79 行
#!/bin/shprefix=@prefix@exec_prefix=@exec_prefix@exec_prefix_set=nousage(){ cat <<EOF 1>&2Usage: lqt-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--plugin-dir] [--version] [--libs | --plugin-libs] [--cflags | --plugin-cflags]EOF exit 1}if test $# -eq 0; then usagefithe_libs="@LQT_LIBS@"the_cflags="@LQT_CFLAGS@"echo_libs=noecho_cflags=nowhile test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix=*) prefix=$optarg if test $exec_prefix_set = no ; then exec_prefix=$optarg fi ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes ;; --exec-prefix) echo $exec_prefix ;; --version) echo @LQT_VERSION@ ;; --plugin-dir) echo @PLUGIN_DIR@ ;; --cflags|--plugin-cflags) the_cflags="-I@includedir@/lqt $the_cflags" echo_cflags=yes ;; --libs|--plugin-libs) the_libs="-L@libdir@ $the_libs" echo_libs=yes ;; *) usage ;; esac shiftdoneif test x$echo_libs = xyes; then echo $the_libsfiif test x$echo_cflags = xyes; then echo $the_cflagsfi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?