~people-project/people-core/deep-refactoring

« back to all changes in this revision

Viewing changes to wscript

  • Committer: Ali Sabil
  • Date: 2009-01-29 22:35:57 UTC
  • Revision ID: ali.sabil@gmail.com-20090129223557-2oyjz0v0xhn8gmma
- Added core-1.0 to the list of dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
            atleast_version='0.74', mandatory=True, args='--cflags --libs')
24
24
    conf.check_cfg(package='gee-1.0', uselib_store='GEE',
25
25
            atleast_version='0.1.3', mandatory=True, args='--cflags --libs')
 
26
    conf.check_cfg(package='core-1.0', uselib_store='CORE',
 
27
            atleast_version='0.1.0', mandatory=True, args='--cflags --libs')
26
28
    conf.check_cfg(package='sqlite3', uselib_store='SQLITE',
27
29
            atleast_version='3.2.0', mandatory=True, args='--cflags --libs')
28
30
    conf.check_cfg(package='libsoup-2.4', uselib_store='SOUP',
41
43
    conf.define('VERSION_MAJOR_MINOR', VERSION_MAJOR_MINOR)
42
44
 
43
45
def build(bld):
44
 
    bld.add_subdirs('libs')
45
46
    bld.add_subdirs('people-libs')
46
 
    bld.add_subdirs('backends')
47
 
    bld.add_subdirs('people')
48
 
    bld.add_subdirs('daemon')
 
47
    #bld.add_subdirs('backends')
 
48
    #bld.add_subdirs('people')
 
49
    #bld.add_subdirs('daemon')
49
50
 
50
51
def shutdown():
51
52
    import UnitTest