summaryrefslogtreecommitdiffstats
path: root/networking/wscript
blob: 095672677d35f51f15cd7a780a6f0306905cf4f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from sys import path
from os.path import abspath
path.append(abspath('../common/'))

from waf import cmd_configure, cmd_build

def configure(ctx):
	cmd_configure(ctx)

def build(ctx):
	cmd_build(ctx)