mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
13 lines
199 B
Python
13 lines
199 B
Python
#! /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')
|
|
|