mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-23 19:32:19 +00:00
Support for SPR# and SPR2 was added to iff2html. *NOTE: The default exporter used is the PNG one, since web browsers don't like targa. However, since there is a bug in my PNG exporter, I would recommend that you use the targa exporter for a precise representation of the loaded sprite frame(s). Feel free to fix the PNG exporter, btw :)
14 lines
No EOL
250 B
CMake
14 lines
No EOL
250 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(iff)
|
|
|
|
set(IFF_SOURCES
|
|
bhav.c
|
|
stbl.c
|
|
sprite.c
|
|
chunks.c
|
|
iff.c
|
|
)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler/libpng)
|
|
|
|
add_executable(iffexport iffexport.c ${IFF_SOURCES}) |