core: output_hook learned how to queue and send output_items
[lumina.git] / core / premake.lua
bloba745a948ef814421ca338d308336276e67836157
1 package.name = "lumina.core"
2 package.kind = "dll"
3 package.language = "c++"
5 package.links = {
6 "ev"
9 package.includepaths = {
10 "include",
12 if linux then
13 package.buildoptions = { "-Wall" }
14 package.config["Debug"].buildoptions = { "-O0" }
15 else
16 print([[Other environments currently untested, may need tweaking]])
17 end
19 package.files = {
20 matchrecursive(
21 "src/*.c",
22 "include/*.h"