aboutsummaryrefslogtreecommitdiff
path: root/ui/daemon/ui_vars.py
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-02-24 01:33:45 +0100
committerPaul Oliver <contact@pauloliver.dev>2026-02-24 01:33:45 +0100
commit9f7e70904e6c0fa650323ac5e50ebf6003da333c (patch)
tree3015be498d36e8d5c960cf55667c6c825f7de493 /ui/daemon/ui_vars.py
parent0fb1497a62332e0db45f94b4f195cb37183678cb (diff)
Removes usage of Jinja templates
Use CPP to pre-process C files instead
Diffstat (limited to 'ui/daemon/ui_vars.py')
-rw-r--r--ui/daemon/ui_vars.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/daemon/ui_vars.py b/ui/daemon/ui_vars.py
index bb6be7c..5b3d372 100644
--- a/ui/daemon/ui_vars.py
+++ b/ui/daemon/ui_vars.py
@@ -1,5 +1,5 @@
-def gen_ui_vars(_):
- return {
- "flags": [],
- "includes": ["signal.h", "stdio.h", "unistd.h"],
- }
+class UIVars:
+ def __init__(self, _):
+ self.includes = {"signal.h", "stdio.h", "unistd.h"}
+ self.defines = set()
+ self.links = set()