waf/playground/freeimage/wscript

12 lines
236 B
Python

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')