-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwin32-env.sh.tpl
More file actions
29 lines (20 loc) · 982 Bytes
/
win32-env.sh.tpl
File metadata and controls
29 lines (20 loc) · 982 Bytes
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
27
28
#!/bin/sh
####################################################################
# This file should be copied to win32-env.sh file
# and adapted to your needs
# Once adapted, execute the following command in the MSYS console
# source win32-env.sh
####################################################################
### set OPENFLUID_INSTALL_PREFIX variable to OpenFLUID path
#export OPENFLUID_INSTALL_PREFIX=/c/LocalInstall
### prepend OpenFLUID bin directory to PATH
#export PATH=$OPENFLUID_INSTALL_PREFIX/bin:$PATH
### prepend Qt Framework and Mingw32 compiler suite to PATH
#export PATH=/c/Qt/5.4/mingw491_32/bin:/c/Qt/Tools/mingw491_32/bin:$PATH
### prepend R environment to PATH
#export PATH="/c/Program Files/R/R-3.2.1/bin":$PATH
### append Rtools to PATH
#export PATH=$PATH:"/c/Rtools/bin"
### set R_LIBS to the user writable R package library
### the RUnit package should be already installed here
#export R_LIBS="C:/Users/username/Documents/R/win-library/3.2"