Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 42620103d8ee8a2d972d3103bad0ab73 > files > 48

waf-1.5.19-1.fc14.noarch.rpm

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006 (ita)

# provides a demo for different objects built using different variants

lib1 = bld(
	features='cc cshlib',
	source = 'lib1.c',
	target = 'lib1')

prog_in_variant1 = bld(
	features = 'cxx cprogram',
	source = 'src1.c',
	target = 'myprog',
	uselib_local = 'lib1')

# this second library in the variant 'debug' (another folder)
#will not link against a c library
prog2 = prog_in_variant1.clone('debug')
prog2.uselib_local = ''