File

squishy @ 173:9b36119c9900 default tip

clix.lua: There's no need to hide the config file under `$HOME/.config/`.`
author Trần H. Trung <xmpp:trần.h.trung@trung.fun>
date Thu, 13 Jul 2023 11:50:30 +0700
parent 160:6c1953fbe0fa
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";
	"avatar";
	"moderate";
}

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"