Changeset 58cffee for src


Ignore:
Timestamp:
Apr 23, 2016, 12:12:06 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:
6d7d52c
Parents:
0806cd2
Message:

tests/wscript_build, src/wscript_build: no -lm on win32/64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r0806cd2 r58cffee  
    1313# build each source files
    1414source = ctx.path.ant_glob('*.c **/*.c')
     15lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None
    1516ctx(features = 'c',
    1617        source = source,
    1718        includes = ['.'],
    1819        uselib = uselib,
    19         lib = 'm',
     20        lib = lib,
    2021        target = 'lib_objects')
    2122
Note: See TracChangeset for help on using the changeset viewer.