File

squishy @ 100:de5abce983d9

squish: Add presence command
author Matthew Wild <mwild1@gmail.com>
date Sat, 30 Mar 2013 14:26:05 +0000
parent 76:aa672fc46be1
child 107:67ff8f55db4a
child 120:f1166645a56c
line wrap: on
line source

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

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"