forked from NeoGeographyToolkit/StereoPipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.options.irg
60 lines (51 loc) · 1.58 KB
/
config.options.irg
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /bin/sh
### IRG Specific Convenience Paths
IRG_ARCH_RAW="`uname -m`_`uname -s`_gcc`gcc -dumpversion | cut -f-2 -d .`"
IRG_ARCH=`echo $IRG_ARCH_RAW | awk '{ print tolower( $0 ) }'`
IRGPKG_DIR=/irg/packages/$IRG_ARCH
### Configure Options
#
# These options allow you modify the basic behavior of the build environment.
ENABLE_DEBUG=no
ENABLE_OPTIMIZE=yes
# This is where stereo will be installed.
PREFIX=$HOME/local
# Set this to where you installed vw
VW_INSTALL=$PREFIX
# need this for qmake
QT_PATH=$IRGPKG_DIR/qt-4/bin
# Use this if it should run on every irg machine
HAVE_PKG_BOOST=$IRGPKG_DIR/boost
HAVE_PKG_GEOS=$IRGPKG_DIR/geos
HAVE_PKG_GSL=$IRGPKG_DIR/gsl
HAVE_PKG_ISIS=$IRGPKG_DIR/isis3/isis
HAVE_PKG_OPENSCENEGRAPH=$IRGPKG_DIR/OpenSceneGraph
HAVE_PKG_QT=$IRGPKG_DIR/qt-4
HAVE_PKG_QT_CORE=$IRGPKG_DIR/qt-4
HAVE_PKG_QT_GUI=$IRGPKG_DIR/qt-4
HAVE_PKG_QT_INCLUDE=$IRGPKG_DIR/qt-4
HAVE_PKG_QT_SQL=$IRGPKG_DIR/qt-4
HAVE_PKG_QWT=$IRGPKG_DIR/qwt
HAVE_PKG_SPICE=$IRGPKG_DIR/cspice
HAVE_PKG_SUPERLU=$IRGPKG_DIR/superlu
HAVE_PKG_VW_CORE=$VW_INSTALL
HAVE_PKG_VW_MATH=$VW_INSTALL
HAVE_PKG_VW_IMAGE=$VW_INSTALL
HAVE_PKG_VW_FILEIO=$VW_INSTALL
HAVE_PKG_VW_CAMERA=$VW_INSTALL
HAVE_PKG_VW_CARTOGRAPHY=$VW_INSTALL
HAVE_PKG_VW_INTEREST_POINT=$VW_INSTALL
HAVE_PKG_VW_STEREO=$VW_INSTALL
### Apps I want
ENABLE_APP_STEREO=yes
ENABLE_APP_ORTHOPROJECT=yes
ENABLE_APP_BUNDLEADJUST=yes
ENABLE_APP_ORBITVIZ=yes
ENABLE_APP_DISPARITYDEBUG=yes
ENABLE_APP_POINT2MESH=yes
ENABLE_APP_POINT2DEM=yes
ENABLE_APP_RMAX2CAHVOR=no
ENABLE_APP_RMAXADJUST=no
ENABLE_APP_BUNDLEVIS=yes
ENABLE_APP_ISISADJUST=yes
ENABLE_APP_RECONSTRUCT=yes