2012-03-13 00:12:27 -05:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
project(iff2html)
|
|
|
|
|
|
|
|
set(IFF2HTML_SOURCES
|
|
|
|
iff2html.c
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
|
|
|
|
|
|
|
|
add_executable(iff2html ${IFF2HTML_SOURCES})
|
|
|
|
target_link_libraries(iff2html FileHandler_shared)
|