mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-11 12:49:06 +01:00
24 lines
379 B
Python
24 lines
379 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Mark Coggeshall 2010
|
|
|
|
VERSION = '1.0.0'
|
|
APPNAME = 'sastest'
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(ctx):
|
|
ctx.load('sas')
|
|
|
|
def build(ctx):
|
|
sastester = ctx(
|
|
features = 'sas',
|
|
name = 'SAStest',
|
|
type = 'sas',
|
|
source = 'src/sastest.sas',
|
|
logdir = 'log',
|
|
lstdir = 'lst',
|
|
deps = ['data/mydata.csv']
|
|
)
|