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.
17 lines
455 B
17 lines
455 B
#!/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)
|
|
|