Show
Ignore:
Timestamp:
10/10/08 08:22:45 (3 months ago)
Author:
tokuhirom
Message:

added parser.parse_string & parser.parse_file

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/trunk/ext/libxml/SConscript

    r20954 r21067  
    33Import("env") 
    44Import("conf") 
     5 
     6sources = [Split('libxml.cc document.cc node.cc dom.c element.cc attr.cc cdata.cc parser.cc')] 
    57 
    68if not platform.system() == 'Windows': 
     
    911        env.SharedLibrary( 
    1012            "libxml", 
    11             [Split('libxml.cc document.cc node.cc dom.c element.cc attr.cc cdata.cc')], 
     13            sources, 
    1214            LIBS=['v8'] + env['LIBS'], 
    1315        ) 
     
    1921        env.SharedLibrary( 
    2022            "libxml", 
    21             [Split('libxml.cc document.cc node.cc dom.c element.cc attr.cc cdata.cc')], 
     23            sources, 
    2224            LIBS=['v8'] + env['LIBS'] + ['xml2'], 
    2325        )