midori/tests/wscript_build
2009-01-17 23:52:09 +01:00

12 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