| A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago | 1 | {:paths ["src"] |
| 2 | |
| 3 | ;; glimmer owns the reactive half (ratom, components, reconciler); |
| 4 | ;; glimmer-vidya paints it as Vidya/egui through libvidya's retained-tree ABI. |
| 5 | :deps {jolt-lang/glimmer {:git/url "https://github.com/jolt-lang/glimmer" |
| 6 | :git/tag "v0.1.0" |
| 7 | :git/sha "5581c331c51aff989259b9e8e92ec920fe5e6741"} |
| 8 | nandi/glimmer-vidya {:local/root "../vidya/glimmer"}} |
| 9 | |
| 10 | ;; libvidya, the Rust/egui build (the C/raylib one does not export the tree |
| 11 | ;; ABI the backend binds): |
| 12 | ;; cd ../vidya && just ffi |
| 13 | ;; LD_LIBRARY_PATH=../vidya/build jolt -M:frq |
| 14 | :jolt/native [{:name "vidya" |
| 15 | :darwin ["libvidya.dylib"] |
| 16 | :linux ["libvidya.so"]}] |
| 17 | |
| 18 | :aliases {:frq {:main-opts ["-m" "frq.app"]}} |
| 19 | |
| 20 | :tasks {frq "jolt -M:frq"}} |