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