squishy

Mon, 11 Feb 2013 00:00:49 +0100

author
Kim Alvefur <zash@zash.se>
date
Mon, 11 Feb 2013 00:00:49 +0100
changeset 107
a074eaacefe7
parent 104
16cdeb9cd879
child 109
67ff8f55db4a
permissions
-rw-r--r--

clix.lua: Don't break if the disconnected event has no event data, and don't warn if the stream was closed cleanly

local commands = {
	"send";
	"receive";
	"version";
	"ping";
	"bounce";
	"mirror";
	"raw";
	"roster";
	"export";
	"vcard";
	"publish_atom";
	"sendfile";
	"archive";
}

for _, cmd in ipairs(commands) do
	Module("clix."..cmd)("clix/"..cmd..".lua")
end

if GetOption "with-verse" then
	Module("verse")(GetOption "with-verse");
end

Main "clix.lua"

Option "executable"
Output "clix.bin"

mercurial