File: wscript

package info (click to toggle)
kdissert 1.0.7-4
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 2,284 kB
  • ctags: 1,194
  • sloc: cpp: 12,145; python: 324; sh: 26; makefile: 24
file content (23 lines) | stat: -rw-r--r-- 412 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006 (ita)

APPNAME='kdissert'
VERSION='1.0.7'

srcdir = '.'
blddir = '_build_'

import Utils
Utils.waf_version(mini="1.0.1", maxi="1.5.0")

def build(bld):
	for dir in ['po', 'src/kdissert', 'src/templates', 'src/appdata']:
		bld.add_subdirs(dir)

def configure(conf):
        conf.check_tool('g++ KDE3')

def set_options(opt):
	opt.tool_options('KDE3')