Prepend() static libxboxdrv instead of Append() to avoid running into missing symbols

This commit is contained in:
Ingo Ruhnke 2011-07-24 18:06:50 +02:00
parent 9a27aad35d
commit 724071ae3c

View file

@ -153,7 +153,7 @@ libxboxdrv = env.StaticLibrary('xboxdrv',
Glob('src/axisevent/*.cpp') +
Glob('src/buttonevent/*.cpp') +
Glob('src/modifier/*.cpp'))
env.Append(LIBS = libxboxdrv)
env.Prepend(LIBS = libxboxdrv)
for file in Glob('test/*_test.cpp', strings=True):
Alias('tests', env.Program(file[:-4], file))