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.
21 lines
359 B
21 lines
359 B
1 year ago
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# mittorn, 2018
|
||
|
|
||
|
def options(opt):
|
||
|
pass
|
||
|
|
||
|
def configure(conf):
|
||
|
pass
|
||
|
|
||
|
def build(bld):
|
||
|
bld.shlib(
|
||
|
source = 'r_context.c',
|
||
|
target = 'ref_null',
|
||
|
features = 'c',
|
||
|
defines = 'REF_DLL',
|
||
|
use = 'engine_includes sdk_includes werror',
|
||
|
install_path = bld.env.LIBDIR,
|
||
|
subsystem = bld.env.MSVC_SUBSYSTEM
|
||
|
)
|