2015-09-24 18:58:00 -07:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os
|
|
|
|
|
2017-12-20 01:11:57 -06:00
|
|
|
for arch in MMS.archs:
|
|
|
|
name = 'test_sourcehook'
|
|
|
|
binary = MMS.Program(builder, name, arch)
|
|
|
|
binary.compiler.cxxincludes += [
|
|
|
|
os.path.join(builder.sourcePath, 'core', 'sourcehook'),
|
|
|
|
]
|
2018-07-31 11:02:13 -07:00
|
|
|
if binary.compiler.version >= 'gcc-4.9':
|
|
|
|
binary.compiler.cxxflags += ['-fno-devirtualize']
|
2017-12-20 01:11:57 -06:00
|
|
|
if binary.compiler.version >= 'clang-2.9' or binary.compiler.version >= 'apple-clang-3.0':
|
|
|
|
binary.compiler.cxxflags += ['-Wno-null-dereference']
|
2015-09-24 18:58:00 -07:00
|
|
|
|
2017-12-20 01:11:57 -06:00
|
|
|
binary.sources += [
|
|
|
|
'main.cpp',
|
|
|
|
'../sourcehook.cpp',
|
|
|
|
'../sourcehook_impl_chookmaninfo.cpp',
|
|
|
|
'../sourcehook_impl_chookidman.cpp',
|
|
|
|
'../sourcehook_impl_cproto.cpp',
|
|
|
|
'../sourcehook_impl_cvfnptr.cpp',
|
|
|
|
'test1.cpp',
|
|
|
|
'test2.cpp',
|
|
|
|
'test3.cpp',
|
|
|
|
'test4.cpp',
|
|
|
|
'testbail.cpp',
|
|
|
|
'testbail2.cpp',
|
|
|
|
'testhookmangen.cpp',
|
|
|
|
'testlist.cpp',
|
|
|
|
'testmanual.cpp',
|
|
|
|
'testmulti.cpp',
|
|
|
|
'testoddthunks.cpp',
|
|
|
|
'testrecall.cpp',
|
|
|
|
'testreentr.cpp',
|
|
|
|
'testref.cpp',
|
|
|
|
'testrefret.cpp',
|
|
|
|
'testvphooks.cpp',
|
|
|
|
]
|
|
|
|
if arch == 'x86':
|
|
|
|
binary.sources += ['../sourcehook_hookmangen.cpp']
|
2015-09-24 18:58:00 -07:00
|
|
|
|
2017-12-20 01:11:57 -06:00
|
|
|
builder.Add(binary)
|