summaryrefslogtreecommitdiff
path: root/lib/dbwrap/wscript_build
blob: 83572cbb8fd7b5bbb9c5353ba09e785fe2f7b819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SRC = '''dbwrap.c dbwrap_util.c dbwrap_rbt.c dbwrap_cache.c dbwrap_tdb.c
         dbwrap_local_open.c'''
DEPS= '''samba-util util_tdb errors tdb tdb-wrap'''

if not bld.env.disable_ntdb:
   SRC += " dbwrap_ntdb.c"
   DEPS += " util_ntdb"

bld.SAMBA_LIBRARY('dbwrap',
                  source=SRC,
                  deps=DEPS,
                  private_library=True)