Mercurial > hg > vamp-plugin-pack
view deploy/linux/generate-qrc @ 116:2405126aa5fe
Of course, the use of dll to build a plugin only works on Windows (where it's necessary because we have static_runtime defined), not on other platforms (where we have a lib- prefix on non-plugin libraries, and we don't have static runtime anyway). Fix and simplify with an additional qmake include file
author | Chris Cannam |
---|---|
date | Fri, 06 Mar 2020 13:32:45 +0000 |
parents | 38cd115c91d4 |
children |
line wrap: on
line source
#!/bin/bash qrc="$1" if [ ! -f "$qrc".in ]; then echo "Input file $qrc.in not found" exit 2 fi set -eu cat "$qrc".in | sed -e 's/@SUFFIX@/.so/g' -e 's/@EXESUFFIX@//g' > "$qrc"