|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
nortti = {
|
|
|
|
'msvc': ['/GR-'],
|
|
|
|
'default': ['-fno-rtti', '-fno-exceptions']
|
|
|
|
}
|
|
|
|
conf.env.append_unique('CXXFLAGS', conf.get_flags_by_compiler(nortti, conf.env.COMPILER_CC))
|
|
|
|
|
|
|
|
if conf.env.DEST_OS != 'android':
|
|
|
|
if conf.env.cxxshlib_PATTERN.startswith('lib'):
|
|
|
|
conf.env.cxxshlib_PATTERN = conf.env.cxxshlib_PATTERN[3:]
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
bld(name = 'filesystem_includes', export_includes = '.')
|
|
|
|
|
|
|
|
libs = [ 'filesystem_includes' ]
|
|
|
|
# on PSVita do not link any libraries that are already in the main executable, but add the includes target
|
|
|
|
if bld.env.DEST_OS == 'psvita':
|
|
|
|
libs += [ 'sdk_includes' ]
|
|
|
|
else:
|
|
|
|
libs += [ 'public' ]
|
|
|
|
|
|
|
|
bld.shlib(target = 'filesystem_stdio',
|
|
|
|
features = 'cxx seq',
|
|
|
|
source = bld.path.ant_glob(['*.c', '*.cpp']),
|
|
|
|
use = libs,
|
|
|
|
install_path = bld.env.LIBDIR,
|
|
|
|
subsystem = bld.env.MSVC_SUBSYSTEM)
|
|
|
|
|
|
|
|
if bld.env.TESTS:
|
|
|
|
# build in same module, so dynamic linking will work
|
|
|
|
# for now (until we turn libpublic to shared module lol)
|
|
|
|
tests = {
|
|
|
|
'interface' : 'tests/interface.cpp',
|
|
|
|
'caseinsensitive' : 'tests/caseinsensitive.c',
|
|
|
|
'no-init': 'tests/no-init.c'
|
|
|
|
}
|
|
|
|
|
|
|
|
for i in tests:
|
|
|
|
bld.program(features = 'test seq',
|
|
|
|
source = tests[i],
|
|
|
|
target = 'test_%s' % i,
|
|
|
|
use = libs + ['DL'],
|
|
|
|
rpath = bld.env.DEFAULT_RPATH,
|
|
|
|
subsystem = bld.env.CONSOLE_SUBSYSTEM,
|
|
|
|
install_path = None)
|