From 4082834f82217514a48e6e00027e4027a673887e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Neuwirth?= Date: Tue, 28 Apr 2009 22:54:06 +0200 Subject: Adding CPixMap handler to cscriptparser, adding cpixmap and cpixelformat_indexed8 to Makefile --- ue2/imgsynth2/Makefile | 6 ++++-- ue2/imgsynth2/cscriptparser.cpp | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'ue2') diff --git a/ue2/imgsynth2/Makefile b/ue2/imgsynth2/Makefile index 22e53e5..8c3079d 100644 --- a/ue2/imgsynth2/Makefile +++ b/ue2/imgsynth2/Makefile @@ -12,9 +12,11 @@ LIBS= -L/usr/local/lib -lboost_program_options BIN= imgsynth2 OBJS= cpixelformat_bgr24.o cpixelformat_bgr555.o \ - cwindowsbitmap.o cbitmap.o cscriptparser.o imgsynth2.o + cpixelformat_indexed8.o cpixmap.o cwindowsbitmap.o \ + cbitmap.o cscriptparser.o imgsynth2.o HEADERS= cpixelformat.h cpixelformat_bgr24.h cpixelformat_bgr555.h \ - cfile.h cbitmap.h cwindowsbitmap.h cscriptparser.h + cpixelformat_indexed8.h cpixmap.h cfile.h cbitmap.h \ + cwindowsbitmap.h cscriptparser.h .SUFFIXES: .cpp .o diff --git a/ue2/imgsynth2/cscriptparser.cpp b/ue2/imgsynth2/cscriptparser.cpp index ea9b242..da6aec5 100644 --- a/ue2/imgsynth2/cscriptparser.cpp +++ b/ue2/imgsynth2/cscriptparser.cpp @@ -19,6 +19,7 @@ CScriptparser::CScriptparser(const std::string& scriptfile) { /* add our handlers */ m_handlers.insert(new CWindowsBitmap); + m_handlers.insert(new CPixMap); } /*----------------------------------------------------------------------------*/ -- cgit v1.2.3