Amar Takhar 3a717592a9 Rework how conf.py is handled.
Needed to switch due to increasing complexity.
2016-05-02 20:51:24 -04:00

17 lines
283 B
Python

from sys import path
from os.path import abspath
path.append(abspath('../common/'))
from waf import cmd_options_path, cmd_configure_path, cmd_build_path
def options(ctx):
cmd_options_path(ctx)
def configure(ctx):
cmd_configure_path(ctx)
def build(ctx):
cmd_build_path(ctx)