Add an example

This commit is contained in:
Gustavo J. A. M. Carneiro
2007-05-31 17:58:02 +01:00
parent ccd7c49e6a
commit a0cd17dbdb
5 changed files with 119 additions and 17 deletions
-15
View File
@@ -3,23 +3,8 @@
import sys
import os.path
import os
from Params import fatal
import pproc as subprocess
def set_options(opt):
opt.tool_options('python')
opt.tool_options('compiler_cxx')
def configure(conf):
conf.check_tool('misc')
if not conf.check_tool('compiler_cxx'):
fatal("Error: no C compiler was found in PATH.")
if not (conf.check_tool('python')
and conf.check_python_version((2,4,2))
and conf.check_python_headers()):
fatal("Error: missing Python development environment.\n"
"(Hint: if you do not have a debugging Python library installed"
" try using the configure option '--debug-level release')")
def build(bld):
gen = bld.create_obj('command-output')