Changeset 6d7d52c for tests


Ignore:
Timestamp:
Apr 23, 2016, 12:34:13 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
a9ec06f
Parents:
58cffee
Message:

src/wscript_build: only no -lm if compiler is CL.exe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/wscript_build

    r58cffee r6d7d52c  
    11# vim:set syntax=python:
    22
    3 lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None
     3lib = 'm' if 'CL.exe' not in ctx.env.CC[0] else None
    44
    55uselib = []
Note: See TracChangeset for help on using the changeset viewer.