mirror of
https://gitlab.com/ita1024/waf.git
synced 2025-01-05 07:56:59 +01:00
Test for #1834
This commit is contained in:
parent
cd50b17e7b
commit
152f40f51a
3
playground/unity/a.c
Normal file
3
playground/unity/a.c
Normal file
@ -0,0 +1,3 @@
|
||||
int foo() {
|
||||
return 34;
|
||||
}
|
3
playground/unity/main.c
Normal file
3
playground/unity/main.c
Normal file
@ -0,0 +1,3 @@
|
||||
int main() {
|
||||
return 0;
|
||||
}
|
12
playground/unity/wscript
Normal file
12
playground/unity/wscript
Normal file
@ -0,0 +1,12 @@
|
||||
#! /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')
|
||||
|
Loading…
Reference in New Issue
Block a user