-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathexample.cfg
24 lines (21 loc) · 915 Bytes
/
example.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- python -*-
import lsst.sconsUtils
# Dependencies that provide header files and or libraries should be included here.
# Pure-Python dependencies do not need to be included.
# Packages that use pybind11 or boost_tests should declare them as build dependencies.
# Otherwise, the rules for which packages to list here are the same as those for
# table files.
dependencies = {
"required": ["utils", "ndarray"],
"buildRequired": ["boost_test", "pybind11", "ndarray", "pex_exceptions"],
"optional": [],
"buildOptional": [],
}
# For packages that build a C++ library and a Python module, the below should be sufficient.
# Pure-Python packages should set headers=[], libs=[] (not libs=None). and hasSwigFiles=False.
# For more information, see the sconsUtils Doxygen documentation.
config = lsst.sconsUtils.Configuration(
__file__,
headers=["lsst/example.h"],
hasDoxygenInclude=False,
)