mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 01:01:22 +00:00
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.
15 lines
366 B
CMake
15 lines
366 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(iff2html)
|
|
|
|
set(IFF2HTML_SOURCES
|
|
iff2html.c
|
|
md5.c
|
|
image.c
|
|
opngreduc.c
|
|
../../Libraries/FileHandler/bmp/read_bmp.c
|
|
)
|
|
|
|
include_directories(${FILEHANDLER_INCLUDE_DIR} ${LIBPNG_INCLUDE_DIR})
|
|
|
|
add_executable(iff2html ${IFF2HTML_SOURCES})
|
|
target_link_libraries(iff2html iff_static libpng_static zlib_static m)
|