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
28 lines
412 B
Python
28 lines
412 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_PadSimple"
|
|
|
|
files = [
|
|
"PadSimple.cpp",
|
|
]
|
|
padenv = env.Clone()
|
|
|
|
if not padenv['osx64']:
|
|
files += [
|
|
"GUI/ConfigDlg.cpp",
|
|
"XInputBase.cpp",
|
|
]
|
|
|
|
padenv.Append(LIBS = [ 'common' ])
|
|
|
|
if padenv['osx64']:
|
|
padenv.Append(
|
|
CXXFLAGS = [ '-arch', 'x86_64' ],
|
|
LINKFLAGS = [ '-arch', 'x86_64' ],
|
|
)
|
|
|
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|