nandi/jolt-nativepublic Fork 0
f554a01a49266b0957fed39383b2d490d9dbdeeb
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

deps.edn · 28 lines · 1.4 KBClojure Blame HistoryRaw
Paint glimmer with nothing under it f554a01 nandi 12d ago1{:paths ["src"]
2
3 ;; glimmer-gfx is a backend for glimmer, beside glimmer-vidya and glimmer-tui
4 ;; and against the same reconciler: glimmer owns the reactive core and knows
5 ;; about no toolkit, and this project supplies widgets, painting and the frame
6 ;; loop.
7 ;;
8 ;; Unlike its siblings there is no shared object under it. The rasterizer is
9 ;; jolt, the layout is jolt, the font is jolt; the only foreign code is Xlib,
10 ;; and Xlib draws nothing here — it opens a window and takes a finished
11 ;; framebuffer. So this backend is the one that runs where no toolkit is
12 ;; installed, and the one to read to see what a backend actually has to do.
13 :deps {jolt-lang/glimmer {:git/url "https://github.com/jolt-lang/glimmer"
14 :git/tag "v0.1.0"
15 :git/sha "5581c331c51aff989259b9e8e92ec920fe5e6741"}}
16
17 ;; The system Xlib, not one of this repo's crates. :optional so the tests,
18 ;; which open no window, run on a machine with no X11 at all.
19 :jolt/native [{:name "X11" :optional true
20 :linux ["libX11.so.6"] :darwin ["libX11.6.dylib"]}]
21
22 :aliases {:counter {:extra-paths ["examples"]
23 :main-opts ["-m" "glimmer-gfx.counter"]}
24 :test {:extra-paths ["test"]
25 :main-opts ["-m" "glimmer-gfx.tests"]}}
26
27 :tasks {counter "jolt -M:counter"
28 test "jolt -M:test"}}