GlobalShortcuts portal backend
git clone https://git.lucas.co/cce-shortcuts-portal.git
Makefile (416B)
1 .PHONY: build install run clean
2
3 build:
4 cargo build --release
5
6 # Binaries, the dbus/ activation file and the portals/ declaration are all
7 # enumerated by ccebuild, so nothing is named here.
8 install: build
9 @command -v ccebuild >/dev/null || { echo "ccebuild not installed — run: make -C ../cce-compositor install"; exit 1; }
10 ccebuild install --no-build cce-shortcuts-portal
11
12 run:
13 cargo run
14
15 clean:
16 cargo clean