nandi/frqpublic Fork 0
ea3c833064e12a13eedb7cdfeb9635b9e926dc67
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.

Find the sibling checkouts from a worktree too cd7e9d2 · on ea3c833064e12a13eedb7cdfeb9635b9e926dc67 · nandi · 19d ago
justfile · 27 lines · 1.0 KBMakefile Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
set shell := ["bash", "-euo", "pipefail", "-c"]

# Sibling checkouts, found relative to the *main* checkout rather than to this
# directory. In a git worktree they are not the same place: the justfile sits
# at .claude/worktrees/<name>, so "../vidya" from here would be
# .claude/worktrees/vidya, which is nothing. `--git-common-dir` is the one
# thing that answers the same in a worktree as it does in the checkout it came
# from.
checkout := parent_directory(`git rev-parse --path-format=absolute --git-common-dir`)
vidya := checkout / "../vidya"
jolt_native := checkout / "../jolt-native"

default:
    @just --list

# libvidya (Rust/egui build) — the tree ABI glimmer-vidya binds.
lib:
    cd {{vidya}} && just ffi

# libjoltmoq — the AV media plane. Only needed for calls; everything else in
# the client runs without it.
av:
    cd {{jolt_native}} && just build

# The app. Point LD_LIBRARY_PATH at whichever libvidya build you have.
run *args:
    LD_LIBRARY_PATH="{{vidya}}/build:{{vidya}}/ffi/target/release:{{jolt_native}}/target/release" jolt -M:frq {{args}}