12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- APPNAME='netcache_test'
- top = '.'
- out = 'build'
- def options(opt):
-
- pass
- def configure(conf):
-
- conf.load('gcc')
-
- def build(bld):
- bld.load('netcache_client')
- bld(
- features = 'c cprogram',
- source = 'main.c',
- target = 'test_c_app',
- uselib_local = 'my_static_lib',
- includes = '. /usr/include')
- bld(
- features = 'c cstlib',
- source = 'test_staticlib.c',
- target='my_static_lib')
|