mysimulation/Tools/iff2html/CMakeLists.txt
Tony Bark cbe28d6c78 Floor drawing function
- Draw floors from JSON files, untested at the moment.
- Renamed lot.zig to world.zig
2024-05-04 04:57:22 -04:00

16 lines
390 B
CMake

cmake_minimum_required(VERSION 2.6)
project(iff2html)
set(IFF2HTML_SOURCES
iff2html.c
md5.c
image.c
opngreduc.c
../../library/formats/iff/iff.h
../../library/formats/bmp/read_bmp.c
)
include_directories(${FILEHANDLER_INCLUDE} ${LIBPNG_INCLUDE})
add_executable(iff2html ${IFF2HTML_SOURCES})
target_link_libraries(iff2html iff_static ${LIBPNG_LINK} ${ZLIB_LINK} m)