Changeset 41b985f for src/wscript_build
- Timestamp:
- Mar 12, 2017, 11:26:24 AM (8 years ago)
- Branches:
- sampler
- Children:
- bde49c4a
- Parents:
- 71f2e5f (diff), 67b6618 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r71f2e5f r41b985f 29 29 elif ctx.env['DEST_OS'] in ['emscripten']: 30 30 build_features = ['cstlib'] 31 else: #linux, darwin, android, mingw, ... 31 elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']: 32 # static in cflags, ... 33 build_features = ['cstlib'] 34 else: 35 # linux, darwin, android, mingw, ... 32 36 build_features = ['cstlib', 'cshlib'] 37 38 # also install static lib 39 from waflib.Tools.c import cstlib 40 from waflib.Tools.fc import fcstlib 41 fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}' 33 42 34 43 for target in build_features: … … 39 48 40 49 # install headers, except _priv.h ones 41 ctx.install_files('${ PREFIX}/include/aubio/',50 ctx.install_files('${INCLUDEDIR}/aubio/', 42 51 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 43 52 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.