mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 19:45:05 +08:00
21 lines
342 B
Python
21 lines
342 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
top = '.'
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
bld.stlib(source = bld.path.ant_glob('*.c'),
|
|
target = 'ref_common',
|
|
includes = '.',
|
|
export_includes = '.',
|
|
defines = 'REF_DLL=1',
|
|
use = 'engine_includes public werror',
|
|
subsystem = bld.env.MSVC_SUBSYSTEM
|
|
)
|