mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 19:02:42 +00:00
2c74f66070
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1158 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
304 B
Python
21 lines
304 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_nJoy_SDL"
|
|
|
|
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)
|