2008-09-13 10:28:23 +00:00
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
2008-09-13 13:44:06 +00:00
|
|
|
output = "../../../../Binary/mac/Plugins/Plugin_Wiimote.so"
|
2008-09-13 10:28:23 +00:00
|
|
|
else:
|
2008-09-13 13:44:06 +00:00
|
|
|
output = "../../../../Binary/linux/Plugins/Plugin_Wiimote.so"
|
2008-09-13 10:28:23 +00:00
|
|
|
|
|
|
|
files = [
|
2008-09-13 17:11:15 +00:00
|
|
|
"Wiimote_Test.cpp",
|
2008-09-13 10:28:23 +00:00
|
|
|
]
|
|
|
|
|
2008-09-16 16:50:09 +00:00
|
|
|
padenv = env.Clone()
|
2008-09-13 10:28:23 +00:00
|
|
|
padenv.Append(
|
2008-09-20 22:06:22 +00:00
|
|
|
CXXFLAGS = [
|
|
|
|
'-fPIC',
|
|
|
|
],
|
2008-09-13 10:28:23 +00:00
|
|
|
)
|
|
|
|
padenv.SharedLibrary(output, files, LIBS = [ "common" ])
|
|
|
|
|