From b2f99bc2982a3fdaface77bf2ac3f445c9b74555 Mon Sep 17 00:00:00 2001 From: Luis Bocanegra Date: Sat, 23 Mar 2024 04:13:25 -0600 Subject: [PATCH] Add screenshot helper install script --- install-screenshot-helper.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 install-screenshot-helper.sh diff --git a/install-screenshot-helper.sh b/install-screenshot-helper.sh new file mode 100755 index 0000000..f62fe37 --- /dev/null +++ b/install-screenshot-helper.sh @@ -0,0 +1,8 @@ +#!/bin/sh +if [ -d "build" ]; then + rm -rf build +fi + +cmake -B build -S . -DCMAKE_INSTALL_PREFIX=~/.local +cmake --build build +cmake --install build