mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-01 14:31:55 +01:00
13 lines
211 B
Python
13 lines
211 B
Python
#! /usr/bin/env python
|
|
|
|
bld.stlib(
|
|
source = 'test_staticlib.c',
|
|
target = 'my_static_lib')
|
|
|
|
bld.program(
|
|
source = 'main.c',
|
|
target = 'test_static_link',
|
|
includes = '.',
|
|
use = 'my_static_lib')
|
|
|