You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
465 B
Python
19 lines
465 B
Python
# -*- python -*-
|
|
|
|
def options(ctx):
|
|
# ctx.system_opt('tinyxml', cross=True)
|
|
pass
|
|
|
|
def configure(ctx):
|
|
pass
|
|
|
|
def build(ctx):
|
|
# if ctx.env.WITH_TINYXML != 'bundle': return
|
|
|
|
ctx.objects(idx = 10100,
|
|
source = 'tinyxml2/tinyxml2.cpp',
|
|
includes = 'tinyxml2',
|
|
export_includes = 'tinyxml2',
|
|
target = 'tinyxml',
|
|
uselib = 'EXT')
|