niotso/Tools/iff2html/CMakeLists.txt
Fatbag 55659f43b5 * Libraries are now being compiled only as static or as shared, not both, quickening the compile process.
* Implemented the rewrite of the iff library, submitted by Propeng. The linked list has been completely replaced with vectors or normal arrays.
* Started work on the cur and tga parsers
2012-04-29 00:44:41 -05:00

12 lines
No EOL
255 B
CMake

cmake_minimum_required(VERSION 2.6)
project(iff2html)
set(IFF2HTML_SOURCES
iff2html.c
md5.c
)
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
add_executable(iff2html ${IFF2HTML_SOURCES})
target_link_libraries(iff2html iff_static)