mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-15 18:46:42 -04:00
iff2html working
This commit is contained in:
parent
deaf3327e0
commit
4cd716e94d
89 changed files with 7711 additions and 3 deletions
19
library/tools/iff2html/CMakeLists.txt
Normal file
19
library/tools/iff2html/CMakeLists.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
cmake_minimum_required(VERSION 2.6)
|
||||
project(iff2html)
|
||||
|
||||
include_directories(${LIBPNG_INCLUDE})
|
||||
include_directories(${ZLIB_INCLUDE})
|
||||
|
||||
include_directories( "${CMAKE_SOURCE_DIR}/formats")
|
||||
|
||||
set(IFF2HTML_SOURCES
|
||||
iff2html.c
|
||||
md5.c
|
||||
image.c
|
||||
opngreduc.c
|
||||
"${CMAKE_SOURCE_DIR}/formats/iff/iff.h"
|
||||
"${CMAKE_SOURCE_DIR}/formats/bmp/read_bmp.c"
|
||||
)
|
||||
|
||||
add_executable(iff2html ${IFF2HTML_SOURCES})
|
||||
target_link_libraries(iff2html iff_static FileHandler_static ${LIBPNG_LINK} ${ZLIB_LINK})
|
Loading…
Add table
Add a link
Reference in a new issue