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/display/wscript

15 lines
247 B
Python

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2016 (ita)
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c')
def build(bld):
bld.load('print_commands')
bld.program(source='main.c', target='app')