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