From 64fc582be81b5766801e3baaebfebca84f5d4f36 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Wed, 23 Sep 2015 14:14:10 +0000 Subject: [PATCH] #1119. Thank You, Emmanuel for your help and patch. --- xmpsdk/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmpsdk/CMakeLists.txt b/xmpsdk/CMakeLists.txt index c70dcfe3..9e19565f 100644 --- a/xmpsdk/CMakeLists.txt +++ b/xmpsdk/CMakeLists.txt @@ -24,8 +24,8 @@ IF( EXIV2_ENABLE_XMP AND EXIV2_ENABLE_LIBXMP ) ADD_LIBRARY( xmp STATIC ${XMPSRC} ) GET_TARGET_PROPERTY( XMPLIB xmp LOCATION ) TARGET_LINK_LIBRARIES(xmp ${EXPAT_LIBRARIES}) - # SET( XMPLIB ${XMPLIB} PARENT_SCOPE ) - # INSTALL(TARGETS xmp ${INSTALL_TARGET_STANDARD_ARGS} ) + # 1119 Install libxmp.a for use by third party applications (Thanks, Emmanuel) + INSTALL(TARGETS xmp ${INSTALL_TARGET_STANDARD_ARGS} ) ENDIF() # That's all Folks!