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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python


def build(bld):
	lib = bld.new_task_gen('cc', 'staticlib')
	lib.name = 'people.static'
	lib.target = 'people'
	lib.source = '''address-book-manager.vala
	                address-book.vala
	                contact.vala
	                contact-manager.vala
	                config.vala
	                config-xml.vala
	                query-result-manager.vala
	                query-result.vala
	                query-builder.vala
	                query-evaluator.vala
	                queryable-contact-source-helper.vala
	                proxy-contact-source.vala
	                proxy-contact.vala'''
	lib.packages = '''gee-1.0'''
	lib.uselib = 'GLIB GOBJECT GEE'
	lib.uselib_local = '''people-backend-dummy.static
	                      people-backend-keyfile.static
	                      people-backend-sqlite.static
	                      people-backend-lastfm.static
	                      people-backend-friendfeed.static
	                      people-backend-google.static'''

	bld.add_subdirs('tests')