ladish/wscript

22 lines
337 B
Plaintext
Raw Normal View History

2009-07-12 15:11:14 +03:00
#! /usr/bin/env python
# encoding: utf-8
APPNAME='ladish'
VERSION='1'
# these variables are mandatory ('/' are converted automatically)
srcdir = '.'
blddir = 'build'
def set_options(opt):
opt.tool_options('compiler_cc')
def configure(conf):
conf.check_tool('compiler_cc')
def build(bld):
pass
def dist_hook():
pass