4
1
mirror of https://github.com/pfloos/quack synced 2024-12-21 11:53:51 +01:00
quack/quack.rc
2024-11-26 19:31:44 +01:00

18 lines
346 B
Bash

#!/bin/bash
QUACK_ROOT="/NOT/FOUND"
case "$(ps -p $$ -ocomm=)" in
"zsh")
QUACK_ROOT=$(dirname "$0")
;;
*)
QUACK_ROOT=$(dirname "${BASH_SOURCE[0]}")
;;
esac
export QUACK_ROOT="$( cd $QUACK_ROOT; pwd -P )"
export PATH="${QUACK_ROOT}/bin:$PATH"
export LD_LIBRARY_PATH="${QUACK_ROOT}/src/cuda/build:$LD_LIBRARY_PATH"