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