waf/playground/unity/wscript

13 lines
199 B
Plaintext
Raw Permalink Normal View History

2016-10-18 18:20:27 +02:00
#! /usr/bin/env python
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c')
conf.load('unity')
def build(bld):
bld.program(source='a.c main.c', target='app')