mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-29 09:30:20 +00:00
775dc8a9c0
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4 8ced0084-cf51-0410-be5f-012b33b47a6e
12 lines
242 B
Python
12 lines
242 B
Python
Import('env')
|
|
|
|
files = ["dis_decode.cpp",
|
|
"dis_groups.cpp",
|
|
"resolve.cpp",
|
|
"syntax.cpp",
|
|
"PowerPCDisasm.cpp",
|
|
]
|
|
|
|
env_bochs = env.Copy(CXXFLAGS = " -fPIC ")
|
|
env_bochs.StaticLibrary("bdisasm", files)
|