forked from NeoGeographyToolkit/StereoPipeline
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.options.example
96 lines (78 loc) · 3.18 KB
/
config.options.example
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#! /bin/sh
# __BEGIN_LICENSE__
# Copyright (c) 2009-2013, United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration. All
# rights reserved.
#
# The NGT platform is licensed under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# __END_LICENSE__
### config.options.example
#
# This file demonstrates how to configure the NASA Stereo Pipeline
# in various ways. To use it, rename or copy it to "config.options"
# and uncomment or modify the appropriate lines below.
# config.options.example_full is an example of a full file used by
# the developers for building.
### Configure Options
#
# Alternative command-line syntax: --enable-foo[=val]
#
# These options allow you modify the basic behavior of the build
# environment.
# ENABLE_DEBUG=no
# ENABLE_OPTIMIZE=yes
# PREFIX=/usr/local
### Module Configuration
#
# Alternative command-line syntax: --enable-module-foo[=val]
#
# Uncomment the following lines to explicitly enable or disable
# certain modules. These options override the default behavior, which
# is to build all the modules that can be built with the libraries
# that you have installed on your system. Note that no module will
# be built if its required software dependencies cannot be found.
# Look at the output from ./configure to see what modules will
# ultimately be built.
# ENABLE_APP_STEREO=no
# ENABLE_APP_ORTHOPROJECT=no
# ENABLE_APP_BUNDLEADJUST=yes
### Package Base Paths
#
# Alternative command-line syntax: --with-paths=val
#
# Set these to the directories that contain lib/include directories
# for packages in non-standard locations. List multiple search
# directories by seperating them with whitespace.
# PKG_PATHS="/foo/bar"
### Per-package Base Paths
#
# Alternative command-line syntax: --with-pkgname[=val]
#
# If val is no, this will disable searching for pkgname.
# If val is yes (the default) it will search PKG_PATHS for the pkg.
# Otherwise, val is treated as a path list that will be used only for
# this pkg, and will locally override PKG_PATHS.
# HAVE_PKG_PKGNAME=/path/to/pkgname
### Disable discovery and hard-code flags
#
# Alternative command-line syntax: --with-pkg-libs[=val], --with-pkg-cppflags[=val]
#
# Set cppflags to prepend to the cppflags, and libs to override the libs. If
# PKG_PKGNAME_LDFLAGS is set, it will prevent configure from searching for
# PKGNAME. A basic check is done, to make sure that the libraries you
# passed in exist, but they are not checked for the required symbols. You should
# independently verify that they provide them.
#PKG_PKGNAME_CPPFLAGS=-I/path/to/headers
#PKG_PKGNAME_LDFLAGS=-L/path/to/libs -lmylib
#
# or even, if you need it (use sparingly):
#PKG_PKGNAME_LDFLAGS=/path/to/required/lib.so