You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
386 B

import Options
import platform
def set_options(opt):
pass
def configure(conf):
conf.env.append_value('CCFLAGS', ['-DHAVE_CONFIG_H=1'])
def build(bld):
cares = bld.new_task_gen("cc")
cares.source = "ev.c"
cares.target = 'ev'
cares.name = 'ev'
cares.includes = '. ./' + bld.env['DEST_OS']
cares.install_path = None
if bld.env["USE_DEBUG"]:
cares.clone("debug");