Makefile changes in JGE to include the boost path. Added a missing include dependency on shared_ptr.

This commit is contained in:
wrenczes@gmail.com
2011-03-02 09:26:31 +00:00
parent 297f87eb04
commit baf0343063
2 changed files with 3 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ PSPSDK = $(shell psp-config --pspsdk-path)
PSPDIR = $(shell psp-config --psp-prefix)
OBJS = $(GENERIC_OBJS) $(PSP_OBJS)
TARGET_HGE = libhgetools.a
INCDIR = include/psp include/psp/freetype2
INCDIR = include/psp include/psp/freetype2 ../Boost
CXXFLAGS += -O2 -G0
LIBDIR = lib/psp
endif
@@ -90,7 +90,7 @@ ifeq ($(TARGET_ARCHITECTURE),linux)
OBJS = $(GENERIC_OBJS) $(LINUX_OBJS)
TARGET_LIB = libjge.a
TARGET_HGE = libhgetools.a
INCDIR = $(shell freetype-config --cflags 2> /dev/null) -I/usr/X11/include
INCDIR = $(shell freetype-config --cflags 2> /dev/null) -I/usr/X11/include -I../Boost
CXXFLAGS += -DLINUX $(FMOD)
CXXFLAGS += $(INCDIR)
LIBDIR = lib/linux

View File

@@ -7,6 +7,7 @@
#include <boost/thread/mutex.hpp>
#else
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include "pspthreadman.h"