mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
5f862cf297
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2960 8ced0084-cf51-0410-be5f-012b33b47a6e
23 lines
391 B
Python
23 lines
391 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_bochs = env.Clone(
|
|
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
|
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
|
)
|
|
|
|
env_bochs.StaticLibrary(env['local_libs'] + "bdisasm", files)
|