removed bad import; updated README

This commit is contained in:
zzzzrrr
2010-02-10 07:14:38 -05:00
parent 73b1fa917a
commit cd95b14d0a
3 changed files with 7 additions and 7 deletions

View File

@@ -40,15 +40,16 @@ def configure(conf):
def build(bld):
print(' building')
'''
'''
# A static library
# The extension (.a) is added automatically
bld.new_task_gen(
features = 'cxx cstaticlib',
features = 'cxx cshlib',
source = p2t_source_files,
name = 'poly2tri',
target = 'poly2tri')
# 1. A simple program
bld.new_task_gen(
features = 'cxx cprogram',