File: wscript_build

package info (click to toggle)
diodon 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,332 kB
  • ctags: 2,064
  • sloc: python: 17,705; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env python
# encoding: utf-8
# Oliver Sauder, 2010

import Options

prog = bld.new_task_gen (
  features = 'c cprogram test',
  target = 'diodon-test',
  vapi_dirs = '../vapi ../libdiodon',
  uselib = 'GTK UNIQUE GIOUNIX',
  use = 'libdiodon',
  cflags = ['-include', 'config.h'],
  packages = 'gtk+-3.0 unique-3.0 gio-unix-2.0 config',
  source = bld.path.ant_glob (incl='**/*.vala'))