mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 18:54:53 +00:00
21 lines
308 B
Text
21 lines
308 B
Text
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
import sys
|
||
|
|
||
|
name = "Plugin_nJoy_Testing"
|
||
|
|
||
|
files = [
|
||
|
'nJoy.cpp',
|
||
|
'GUI/AboutBox.cpp',
|
||
|
'GUI/ConfigBox.cpp',
|
||
|
]
|
||
|
|
||
|
padenv = env.Clone()
|
||
|
padenv.Append(
|
||
|
CXXFLAGS = [ '-fPIC' ],
|
||
|
LIBS = [ 'common' ],
|
||
|
)
|
||
|
if not env['osx64']:
|
||
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|