Add missing files to makefile and add proper includes to let desmume compile again.

This commit is contained in:
riccardom 2009-02-03 19:40:05 +00:00
parent a680b58121
commit 54b392d76b
3 changed files with 5 additions and 2 deletions

View File

@ -48,7 +48,8 @@ libdesmume_a_SOURCES = \
addons.cpp addons.h \
addons/compactFlash.cpp addons/gbagame.cpp addons/none.cpp addons/rumblepak.cpp \
mic.cpp mic.h \
cheatSystem.cpp cheatSystem.h
cheatSystem.cpp cheatSystem.h \
texcache.cpp texcache.h rasterize.cpp rasterize.h
if HAVE_GDB_STUB
libdesmume_a_SOURCES += gdbstub.h
endif

View File

@ -26,10 +26,11 @@
//if you change it, erase other signatures.
//if you optimize it and think it is risky, erase other signatures
#include "Rasterize.h"
#include "rasterize.h"
#include <algorithm>
#include <assert.h>
#include <string.h>
#include "bits.h"
#include "common.h"

View File

@ -1,5 +1,6 @@
#include "texcache.h"
#include <string.h>
#include <algorithm>
#include "bits.h"