mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
05719ac81a
consistent with the other build systems. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7282 8ced0084-cf51-0410-be5f-012b33b47a6e
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)
|