waf/playground/freeimage/wscript

12 lines
236 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx freeimage')
def configure(conf):
conf.load('compiler_cxx freeimage')
def build(bld):
bld.program(source='fi.cpp', target='app', use='FREEIMAGE')