File

squishy @ 148:27a9f28724d3

clix.archive: Add 'irc' output format, useful for MUC export
author Kim Alvefur <zash@zash.se>
date Mon, 08 Feb 2021 22:59:49 +0100
parent 139:6909e479c56b
child 157:aa0f11fb166c
line wrap: on
line source

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

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"