move it to Libs

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1217 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-11-19 10:49:36 +00:00
parent 33edd6c553
commit 167196aa10
2 changed files with 3 additions and 1 deletions

View File

@ -22,4 +22,4 @@ env_wiiuse = env.Clone(
libs = [
'm', 'bluetooth',
]
env_wiiuse.SharedLibrary(env['plugin_dir']+"wiiuse", files, LIBS=libs)
env_wiiuse.SharedLibrary(env['libs_dir']+"wiiuse", files, LIBS=libs)

View File

@ -227,6 +227,8 @@ env['prefix'] = os.path.join(env['base_dir'] + 'Binary', platform.system() + '-'
env['plugin_dir'] = env['prefix'] + 'Plugins/'
#TODO add bin
env['binary_dir'] = env['prefix']
#TODO add libs
env['libs_dir'] = env['prefix'] + 'Libs/'
#TODO where should this go?
env['data_dir'] = env['prefix']