-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetenv.sh
More file actions
executable file
·30 lines (21 loc) · 921 Bytes
/
setenv.sh
File metadata and controls
executable file
·30 lines (21 loc) · 921 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
29
#!/bin/bash
pushd `dirname $0`/.. > /dev/null
: ${INVICTUS_ROOT:=`pwd -P`}
popd > /dev/null
export INVICTUS_ROOT
echo "Using: "$INVICTUS_ROOT "as INVICTUS_ROOT"
export BITSHARES_ROOT=$INVICTUS_ROOT
export TOOLCHAIN_ROOT=$INVICTUS_ROOT/toolchain.invictus
export PKG_CONFIG_SYSROOT_DIR=$TOOLCHAIN_ROOT/x86_64-unknown-linux-gnu/sysroot
export PKG_CONFIG_PATH=$TOOLCHAIN_ROOT/x86_64-unknown-linux-gnu/sysroot/usr/lib/pkgconfig
export QTDIR=$INVICTUS_ROOT/QT
echo "Using: "$QTDIR "as QTDIR"
export PATH=$TOOLCHAIN_ROOT/bin:$QTDIR/bin:$INVICTUS_ROOT/bin:$PATH
export OPENSSL_ROOT=$INVICTUS_ROOT/openssl
export OPENSSL_ROOT_DIR=$OPENSSL_ROOT
#export OPENSSL_INCLUDE_DIR=$OPENSSL_ROOT/include
export ICUROOT=$INVICTUS_ROOT/ICU
export LD_LIBRARY_PATH=$ICUROOT/lib:$QTDIR/lib:$LD_LIBRARY_PATH
export DBROOTDIR=$INVICTUS_ROOT/BerkeleyDB
echo "Using: "$DBROOTDIR "as DBROOTDIR"
export BOOST_ROOT=$INVICTUS_ROOT/boost_1_55_0