mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 21:35:28 +00:00
3e2419776f
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@591 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
349 B
Python
21 lines
349 B
Python
Import('env')
|
|
import sys
|
|
|
|
if sys.platform == 'darwin':
|
|
output = "../../../../Binary/mac/Plugins/Plugin_Wiimote.so"
|
|
else:
|
|
output = "../../../../Binary/linux/Plugins/Plugin_Wiimote.so"
|
|
|
|
files = [
|
|
"Wiimote_Test.cpp",
|
|
]
|
|
|
|
padenv = env.Clone()
|
|
padenv.Append(
|
|
CXXFLAGS = [
|
|
'-fPIC',
|
|
],
|
|
)
|
|
padenv.SharedLibrary(output, files, LIBS = [ "common" ])
|
|
|