Changeset 988 for vendor/current/testsuite/headers
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/testsuite/headers/wscript_build
r740 r988 9 9 hlist = task.env.public_headers_list[:] 10 10 hlist.sort() 11 11 12 for h in hlist: 12 13 f.write('#include "%s"\n' % os.path.normpath(h)) … … 24 25 target='test_headers.h') 25 26 26 cflags=''27 for lib in ['talloc', 'tevent', 'tdb', 'ldb', 'popt' ]:28 ename = 'CPPPATH_%s' % lib.upper()29 for p in bld.env[ename]:30 cflags += bld.env.CPPPATH_ST % p + ' '31 32 if not bld.env.USING_SYSTEM_POPT:33 cflags += bld.env.CPPPATH_ST % '../lib/popt'34 35 27 if bld.env.DEVELOPER_MODE: 36 28 bld.SAMBA_BINARY('test_headers', … … 38 30 includes="#include/public", 39 31 pyembed=True, 40 cflags=cflags,41 32 local_include=True, 42 33 global_include=False, 43 34 use_global_deps=False, 44 install=False) 35 install=False, 36 deps='talloc tdb ldb tevent popt')
Note:
See TracChangeset
for help on using the changeset viewer.