nandi/frqpublic Fork 0
cd7e9d235f46cae7fbc3cab6e7b2360c3ab0c034
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

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

justfile · 27 lines · 1.0 KBMakefile Blame HistoryRaw
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago1set shell := ["bash", "-euo", "pipefail", "-c"]
2
Find the sibling checkouts from a worktree too cd7e9d2 nandi 19d ago3# Sibling checkouts, found relative to the *main* checkout rather than to this
4# directory. In a git worktree they are not the same place: the justfile sits
5# at .claude/worktrees/<name>, so "../vidya" from here would be
6# .claude/worktrees/vidya, which is nothing. `--git-common-dir` is the one
7# thing that answers the same in a worktree as it does in the checkout it came
8# from.
9checkout := parent_directory(`git rev-parse --path-format=absolute --git-common-dir`)
10vidya := checkout / "../vidya"
11jolt_native := checkout / "../jolt-native"
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago12
13default:
14 @just --list
15
16# libvidya (Rust/egui build) — the tree ABI glimmer-vidya binds.
17lib:
18 cd {{vidya}} && just ffi
19
Calls f31ad3d nandi 19d ago20# libjoltmoq — the AV media plane. Only needed for calls; everything else in
21# the client runs without it.
22av:
23 cd {{jolt_native}} && just build
24
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago25# The app. Point LD_LIBRARY_PATH at whichever libvidya build you have.
26run *args:
Calls f31ad3d nandi 19d ago27 LD_LIBRARY_PATH="{{vidya}}/build:{{vidya}}/ffi/target/release:{{jolt_native}}/target/release" jolt -M:frq {{args}}