2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 11:19:52 +01:00
waf/playground/display/wscript

15 lines
247 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2016 (ita)
2015-09-28 21:44:50 +02:00
2011-09-10 11:13:51 +02:00
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c')
def build(bld):
bld.load('print_commands')
2011-09-10 11:13:51 +02:00
bld.program(source='main.c', target='app')