Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/cad/brlcad/files/mged.sh
18157 views
1
#!/bin/sh
2
# This is pretty lame for the time being, but it serves as a reminder
3
# to set correctly your environment before attempting to run BRL CAD.
4
5
BRLCAD_ROOT=%%BRLCAD_ROOT%%
6
7
export BRLCAD_ROOT
8
export PATH=%%BRLCAD_ROOT%%/bin:$PATH
9
export MANPATH=%%BRLCAD_ROOT%%/man:$MANPATH
10
export ITCL_PATH=%%BRLCAD_ROOT%%/lib/itcl3.4
11
export ITK_PATH=%%BRLCAD_ROOT%%/lib/itk3.4
12
13
exec %%BRLCAD_ROOT%%/bin/mged "$@"
14
15