You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
326 B
10 lines
326 B
#!/bin/bash
|
|
# Source this file to set up the environment for running KiCad from ~/bin/kicad
|
|
# Usage: source setup-env.sh
|
|
|
|
export LD_LIBRARY_PATH="$HOME/bin/kicad/lib:$LD_LIBRARY_PATH"
|
|
export PATH="$HOME/bin/kicad/bin:$PATH"
|
|
|
|
echo "KiCad environment configured:"
|
|
echo " LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
|
|
echo " PATH: $PATH"
|