1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:05:26 +03:00

Use the Google Sparsehash package that is included in our source tree.

Since Sparsehash consists of headers only, it is just a matter of using the right include path.
This commit is contained in:
Maarten ter Huurne 2010-06-18 02:13:05 +02:00
parent 9f21df7fed
commit 40f795391d
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ noinst_HEADERS = asfont.h button.h cpu.h dirdialog.h FastDelegate.h \
AM_CFLAGS= @CFLAGS@ @SDL_CFLAGS@
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@ -Isparsehash-1.6/src
gmenu2x_LDADD = @LIBS@ @SDL_LIBS@ -lfreetype -lSDL_image -lSDL_ttf -lSDL_gfx -lSDL -ljpeg -lpng12 -lz -ldl -lpthread

View File

@ -23,8 +23,8 @@
#include <string>
#include <iostream>
#include <google/dense_hash_map>
#include "google/dense_hash_map"
#include "surfacecollection.h"
#include "iconbutton.h"
#include "translator.h"