You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waf/playground/haxe/executable/bin/wscript

15 lines
330 B
Python

def configure(ctx):
ctx.load('clang')
ctx.check(
compiler='c',
lib='hl',
use='HL',
uselib_store='HL')
def build(ctx):
ctx.program(
source = [ctx.bldnode.make_node('src/main/main.c')],
includes = [ctx.env.ROOT_INCLUDE_DIR],
target = 'app',
use = ['HL'])