11 lines
364 B
Python
11 lines
364 B
Python
#! /usr/bin/env python
|
|
# WAF build script for midori
|
|
# This file is licensed under the terms of the expat license, see the file EXPAT.
|
|
|
|
obj = bld.new_task_gen ('cc', 'program')
|
|
obj.target = 'magic-uri'
|
|
obj.includes = '.. ../midori'
|
|
obj.source = 'magic-uri.c'
|
|
obj.uselib = 'UNIQUE LIBSOUP GIO GTK SQLITE WEBKIT LIBXML'
|
|
obj.uselib_local = 'midori'
|
|
obj.unit_test = 1
|