mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 19:10:37 +00:00
18 lines
455 B
Python
18 lines
455 B
Python
#!/usr/bin/env python
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
if conf.env.cxxshlib_PATTERN.startswith('lib'):
|
|
conf.env.cxxshlib_PATTERN = conf.env.cxxshlib_PATTERN[3:]
|
|
|
|
def build(bld):
|
|
bld.shlib(target = 'filesystem_stdio',
|
|
features = 'cxx c',
|
|
source = bld.path.ant_glob(['*.c', '*.cpp']),
|
|
includes = ['.', '../common', '../public', '../engine'],
|
|
use = ['public'],
|
|
install_path = bld.env.LIBDIR,
|
|
subsystem = bld.env.MSVC_SUBSYSTEM)
|