# plug-in/cineon/CMakeLists.txt
# Created by Robin Rowe 2020-03-10
# License: Open Source MIT

get_filename_component(dir ${CMAKE_CURRENT_SOURCE_DIR} NAME)
project(plugin-${dir})
message("Configuring ${PROJECT_NAME}...")
set(SOURCES 
	cineonfile.h
	cineonlib.h
	dpxfile.h
	dpxlib.h
	logImageCore.h
	logImageLib.h
	cineon.c
	cineonlib.c
	dpxlib.c
	logImageCore.c
	logImageLib.c
)
# 	cineonTest.c

add_library(${PROJECT_NAME} SHARED ${SOURCES})

