squishy

Sat, 30 Mar 2013 14:23:47 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 30 Mar 2013 14:23:47 +0000
changeset 99
c51402a40e41
parent 76
aa672fc46be1
child 100
de5abce983d9
child 104
16cdeb9cd879
permissions
-rw-r--r--

Add clix/presence.lua: list the presence of your contacts (or probe one with --to). Contributed by Lonnie Abelbeck

local commands = {
	"send";
	"receive";
	"version";
	"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