-
Notifications
You must be signed in to change notification settings - Fork 0
/
bashrc_argos
26 lines (22 loc) · 920 Bytes
/
bashrc_argos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Modules to load
module load cmake
module load gcc
module load slurm
# Force new gcc version
export CC=gcc
export CXX=g++
# To execute ARGoS and compile your code that uses ARGoS
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/argos3bundle/lib/argos3
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/argos3bundle/lib/pkgconfig
export PATH=$PATH:$HOME/argos3bundle/bin
export CMAKE_MODULE_PATH="$CMAKE_MODULE_PATH;$HOME/argos3bundle/share/argos3/cmake"
export CMAKE_LIBRARY_PATH=$CMAKE_LIBRARY_PATH:$HOME/argos3bundle/lib/argos3
export CMAKE_INCLUDE_PATH=$CMAKE_INCLUDE_PATH:$HOME/argos3bundle/include
# User specific aliases and functions
alias rm='rm -iv'
alias cp='cp -iv'
alias mv='mv -iv'