summaryrefslogtreecommitdiff
path: root/gtk2_ardour/luadoc.cc
blob: 586d3deace51f923e3df811379b4ca0bcbabc0ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <stdio.h>
#include <string.h>
#include <iostream>

#include "ardour/luabindings.h"
#include "ardour/revision.h"
#include "luainstance.h"
#include "LuaBridge/LuaBridge.h"

#ifdef WAF_BUILD
#include "gtk2ardour-version.h"
#endif

int main (int argc, char **argv)
{
#ifdef LUABINDINGDOC
	luabridge::setPrintBindings (true);
	LuaState lua;
	lua_State* L = lua.getState ();
#ifdef LUADOCOUT
	printf ("-- %s\n", ARDOUR::revision);
	printf ("doc = {\n");
#else
	printf ("[\n");
	printf ("{\"version\" :  \"%s\"},\n\n", ARDOUR::revision);
#endif
	LuaInstance::register_classes (L);
	LuaInstance::register_hooks (L);
	ARDOUR::LuaBindings::dsp (L);
#ifdef LUADOCOUT
	printf ("}\n");
#else
	printf ("{} ]\n");
#endif
	return 0;
#else
	return 1;
#endif
}