working login page

This commit is contained in:
Henry Hiles 2026-01-25 13:02:40 +00:00
commit 47a758a33b
No known key found for this signature in database
12 changed files with 133 additions and 245 deletions

View file

@ -12,8 +12,6 @@ void main(List<String> args) async {
print("Cloning Gomuks repository...");
final cloneResult = await Process.run("git", [
"clone",
"--branch",
"tulir/ffi",
"--depth",
"1",
"https://mau.dev/gomuks/gomuks",
@ -32,7 +30,7 @@ void main(List<String> args) async {
dartFile: Platform.script.resolve("../lib/src/third_party/gomuks.g.dart"),
),
headers: Headers(
entryPoints: [File(join(repoDir.path, "pkg", "ffi", "ffi.h")).uri],
entryPoints: [File(join(repoDir.path, "pkg", "ffi", "gomuksffi.h")).uri],
compilerOptions: ["--no-warnings"],
),
functions: Functions.includeAll,