mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 02:00:53 +01:00
13 lines
160 B
Python
13 lines
160 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'main.cpp',
|
||
|
]
|
||
|
|
||
|
acenv = env.Clone()
|
||
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
|
||
|
acenv.Program('dsptool', files)
|