- hack to get things comipling... need to parse the output of sdl-config --libs

This commit is contained in:
soules 2006-07-28 16:16:22 +00:00
parent de01f68da5
commit f1d0e6d241
1 changed files with 1 additions and 1 deletions

View File

@ -62,4 +62,4 @@ LINKFLAGS = sdl_libflags.read();
LINKFLAGS = " -lz " + LINKFLAGS.rstrip(os.linesep);
sdl_libflags.close();
env.Program('fceu', file_list, CCFLAGS=CCFLAGS, LIBPATH=LINKFLAGS)
env.Program('fceu', file_list, CCFLAGS=CCFLAGS, LIBS = ['SDL', 'pthread', 'z'], LIBPATH = '/usr/lib')