Skip to content

Commit

Permalink
Include xtiff in installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Jan 27, 2014
1 parent c09ab6a commit 473ab94
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion libxtiff/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,13 @@
# Author: Mateusz Loskot <[email protected]>
#
###############################################################################
ADD_LIBRARY( xtiff STATIC xtiff.c )

ADD_LIBRARY(xtiff STATIC xtiff.c)
ADD_LIBRARY( xtiff_i SHARED xtiff.c )

TARGET_LINK_LIBRARIES( xtiff_i ${TIFF_LIBRARIES} )

INSTALL( TARGETS xtiff xtiff_i
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib )

0 comments on commit 473ab94

Please sign in to comment.