mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-28 16:55:31 +01:00
26 lines
452 B
Python
26 lines
452 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
"classic.c",
|
||
|
"dynamics.c",
|
||
|
"events.c",
|
||
|
"io.c",
|
||
|
"io_nix.c",
|
||
|
"ir.c",
|
||
|
"nunchuk.c",
|
||
|
"guitar_hero_3.c",
|
||
|
"wiiuse.c",
|
||
|
]
|
||
|
|
||
|
env_wiiuse = env.Clone(
|
||
|
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
||
|
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
||
|
)
|
||
|
|
||
|
libs = [
|
||
|
'm', 'bluetooth',
|
||
|
]
|
||
|
env_wiiuse.SharedLibrary(env['plugin_dir']+"wiiuse", files, LIBS=libs)
|