13
0
livetrax/gtk2_ardour/arluadoc
Robin Gareus 6972db0d55 add luadoc binary (developer tool) to dump lua bindings
output is either JSON or lua-tables.
enable via  ./waf configure --luadoc ... , needs C++11
2016-03-20 20:54:36 +01:00

10 lines
309 B
Bash
Executable File

#!/bin/sh
TOP=`dirname "$0"`/..
. $TOP/build/gtk2_ardour/ardev_common_waf.sh
export UBUNTU_MENUPROXY=""
$TOP/build/gtk2_ardour/luadoc "$@" \
| sed 's/__cxx11:://g;' \
| sed 's/std::basic_string<char, std::char_traits<char>\, std::allocator<char> >/std::string/g;' \
| sed 's/, std::allocator<[^>]*> //g;'