mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-22 10:52:20 +00:00
* 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
12 lines
No EOL
255 B
CMake
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) |