source: waflib/Tools/nasm.py @ 0fa325b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 0fa325b was 0fa325b, checked in by Paul Brossier <piem@piem.org>, 11 years ago

waf: unpack

  • Property mode set to 100644
File size: 469 bytes
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5import waflib.Tools.asm
6from waflib.TaskGen import feature
7@feature('asm')
8def apply_nasm_vars(self):
9        self.env.append_value('ASFLAGS',self.to_list(getattr(self,'nasm_flags',[])))
10def configure(conf):
11        nasm=conf.find_program(['nasm','yasm'],var='AS')
12        conf.env.AS_TGT_F=['-o']
13        conf.env.ASLNK_TGT_F=['-o']
14        conf.load('asm')
Note: See TracBrowser for help on using the repository browser.