Moved to git

Assembla's decision to remove Trac incited us to ditch them entirely. Further, the repository no longer includes binaries or libraries; these can be downloaded from niotso.org/pub/ and updated with the included update-libraries script.
This commit is contained in:
Andrew D'Addesio 2012-10-17 03:21:00 -05:00
parent 6b0b0c1d9c
commit 227617b540
33 changed files with 368 additions and 95 deletions

View file

@ -9,7 +9,7 @@ set(IFF2HTML_SOURCES
../../Libraries/FileHandler/bmp/read_bmp.c
)
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
include_directories(${FILEHANDLER_INCLUDE_DIR} ${LIBPNG_INCLUDE_DIR})
add_executable(iff2html ${IFF2HTML_SOURCES})
target_link_libraries(iff2html iff_static libpng_static zlib_static m)

View file

@ -20,7 +20,7 @@
#include <iff/iff.h>
#include <bmp/read_bmp.h>
#include <setjmp.h>
#include <libpng/png.h>
#include <png.h>
#include "opngreduc.h"
int WritePNG(const char * OutName, const IFFChunk * ChunkData, int ZBuffer,

View file

@ -12,7 +12,7 @@
#ifndef OPNGREDUC_H
#define OPNGREDUC_H
#include <libpng/png.h>
#include <png.h>
#ifdef __cplusplus