19 lines
300 B
Python
19 lines
300 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
'PowerPCDisasm.cpp',
|
|
'dis_decode.cpp',
|
|
'dis_groups.cpp',
|
|
'resolve.cpp',
|
|
'syntax.cpp',
|
|
]
|
|
|
|
if sys.platform == 'win32':
|
|
files += ['stdafx.cpp']
|
|
|
|
env['CPPPATH'] += ['#Externals/Bochs_disasm']
|
|
env['LIBS'] += env.StaticLibrary('bdisasm', files)
|