forked from kushview/element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ld
55 lines (52 loc) · 1.16 KB
/
config.ld
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
project = 'Element'
title = 'Element Lua Documentation'
description = 'Element Lua Documentation'
file = {
'src/el',
'scripts',
'src/engine/midipipe.cpp',
exclude = {
'docs/examples',
'src/el/audio_buffer.hpp',
'src/el/midi_buffer.hpp',
'src/el/sol_helpers.hpp',
'src/el/lua-kv.hpp',
'src/el/lua-kv.h'
}
}
examples = {
'docs/examples/helloworld.lua',
'docs/examples/sysex.lua',
'docs/examples/sysexui.lua',
'scripts/amp.lua',
'scripts/ampui.lua',
'scripts/channelize.lua'
}
dir = 'build-native/docs/lua'
output = 'index'
merge = true
all = false
add_language_extension ('.hpp', 'c')
add_language_extension ('.ipp', 'c')
---[[
custom_tags = {
{
"property",
title = "Properties",
hidden = false,
format = function (data)
return data .. ""
end
} , {
"kind",
title = "Script Type",
hidden = false,
}
}
custom_display_name_handler = function (item, default_handler)
if item.tags.kind then
return item.name
end
return default_handler (item)
end
--]]