Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 42620103d8ee8a2d972d3103bad0ab73 > files > 33

waf-1.5.19-1.fc14.noarch.rpm

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

# Creates a simple program with c++ and c sources as input
# compile with the appropriate compilers and link with g++

out = bld(
	features = 'cxx cc cprogram',
	source = 'a.cpp b.c',
	target = 'hybrid')