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

6
README
View File

@ -7,7 +7,7 @@ Dependencies
------------
Core poly2tri lib:
- Standard Template Library
- Standard Template Library (STL)
Testbed:
- gcc
@ -15,8 +15,8 @@ Dependencies
- GLFW (http://glfw.sf.net)
- Python
Waf (http://code.google.com/p/waf/) is used to compile the testbed, and
the Python waf script (86kb) is included in the repositoty.
Waf (http://code.google.com/p/waf/) is used to compile the testbed.
A waf script (86kb) is included in the repositoty.
----------------------------------------------
Building the Testbed

View File

@ -30,7 +30,6 @@
*/
#include "sweep_context.h"
#include <algorithm>
#include <GL/glfw.h>
#include "advancing_front.h"
namespace p2t {

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',