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.
33 lines
940 B
33 lines
940 B
#! /usr/bin/env python |
|
# encoding: utf-8 |
|
# a1batross, mittorn, 2018 |
|
|
|
def options(opt): |
|
# TODO: any options for mdldec? |
|
grp = opt.get_option_group('Utilities options') |
|
|
|
grp.add_option('--disable-utils-mdldec', action = 'store_true', dest = 'DISABLE_UTILS_MDLDEC', default = False, |
|
help = 'disable studio model decompiler utility [default: %default]') |
|
|
|
def configure(conf): |
|
conf.env.DISABLE_UTILS_MDLDEC = conf.options.DISABLE_UTILS_MDLDEC |
|
|
|
def build(bld): |
|
if bld.env.DISABLE_UTILS_MDLDEC: |
|
return |
|
|
|
source = bld.path.ant_glob('*.c') |
|
includes = '. ../../common ../../engine ../../engine/common ../../engine/common/imagelib ../../public' |
|
libs = [ 'public', 'M' ] |
|
|
|
bld( |
|
source = source, |
|
target = 'mdldec', |
|
features = 'c cprogram', |
|
includes = includes, |
|
use = libs, |
|
install_path = bld.env.BINDIR, |
|
subsystem = bld.env.CONSOLE_SUBSYSTEM |
|
) |
|
|
|
bld.install_files(bld.env.SHAREDIR, 'res/activities.txt')
|
|
|