mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 09:44:46 +00:00
13 lines
218 B
Python
13 lines
218 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'EventHandler.cpp',
|
||
|
'InputCommon.cpp',
|
||
|
]
|
||
|
|
||
|
env_inputcommon = env.Clone()
|
||
|
env_inputcommon.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
env_inputcommon.StaticLibrary("inputcommon", files)
|