22 lines
363 B
Python
22 lines
363 B
Python
# -*- 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' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
padenv.SharedLibrary(output, files)
|
|
|