diff options
author | David Robillard <d@drobilla.net> | 2012-09-12 14:43:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-12 14:43:14 +0000 |
commit | 41b3580c3dfeef279a2f151ecd30fc905e9a576f (patch) | |
tree | ec20cffd9ae160bdd71932e3c9adabe2bb13da7b | |
parent | 13e2f313912f2cff15d2201d4a24c0b45303ac8b (diff) | |
download | mda.lv2-41b3580c3dfeef279a2f151ecd30fc905e9a576f.tar.gz mda.lv2-41b3580c3dfeef279a2f151ecd30fc905e9a576f.tar.bz2 mda.lv2-41b3580c3dfeef279a2f151ecd30fc905e9a576f.zip |
Clean up wscripts.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4771 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -2,19 +2,15 @@ import os import re import shutil +import waflib.extras.autowaf as autowaf -from waflib.extras import autowaf as autowaf - -# Version of this package (even if built as a child) MDA_VERSION = '1.0.0' -# Variables for 'waf dist' -APPNAME = 'mda-lv2' -VERSION = MDA_VERSION - -# Mandatory variables -top = '.' -out = 'build' +# Mandatory waf variables +APPNAME = 'MDA' # Package name for waf dist +VERSION = MDA_VERSION # Package version for waf dist +top = '.' # Source directory +out = 'build' # Build directory def options(opt): opt.load('compiler_cxx') |