summaryrefslogtreecommitdiff
path: root/graphics/asymptote/tinyexr/test/CMakeLists.txt
blob: 4a28914486dbac07d99b44c254ea1e5cbb14d139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
project(tinyexr)
cmake_minimum_required(VERSION 2.8)

set(tinyexr-Source
	${CMAKE_CURRENT_SOURCE_DIR}/../tinyexr.cc
	${CMAKE_CURRENT_SOURCE_DIR}/../tinyexr.h
	)

add_library(tinyexr
			${tinyexr-Source}
	)

#Installation
#install ( TARGETS
#  tinyexr
#  DESTINATION
#  lib
#  )
#install ( FILES
#  tinyexr.h
#  DESTINATION
#  include
#  )