shithub: freetype+ttf2subf

Download patch

ref: c80620c7fe1c11a4a6080cdec10c09ccd6a4edda
parent: 9d0544f25f94cda5255384457150ebf9f5f60a5a
author: Tamas Kenez <[email protected]>
date: Fri Nov 27 13:37:21 EST 2015

* CMakeLists.txt: Create `freetype-config.cmake' config module.

git/fs: mount .git/fs: mount/attach disallowed
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -351,22 +351,32 @@
   )
 endif ()
 
+if (NOT CMAKE_VERSION VERSION_LESS 2.8.11)
+  target_include_directories(freetype
+    PUBLIC $<INSTALL_INTERFACE:include/freetype2>)
+endif ()
 
+if (CMAKE_VERSION VERSION_LESS 2.8.12)
+  set(MAYBE_PRIVATE "")
+else ()
+  set(MAYBE_PRIVATE "PRIVATE")
+endif ()
+
 if (ZLIB_FOUND)
-  target_link_libraries(freetype ${ZLIB_LIBRARIES})
+  target_link_libraries(freetype ${MAYBE_PRIVATE} ${ZLIB_LIBRARIES})
   include_directories(${ZLIB_INCLUDE_DIRS})
 endif ()
 if (BZIP2_FOUND)
-  target_link_libraries(freetype ${BZIP2_LIBRARIES})
+  target_link_libraries(freetype ${MAYBE_PRIVATE} ${BZIP2_LIBRARIES})
   include_directories(${BZIP2_INCLUDE_DIR}) # not BZIP2_INCLUDE_DIRS
 endif ()
 if (PNG_FOUND)
   add_definitions(${PNG_DEFINITIONS})
-  target_link_libraries(freetype ${PNG_LIBRARIES})
+  target_link_libraries(freetype ${MAYBE_PRIVATE} ${PNG_LIBRARIES})
   include_directories(${PNG_INCLUDE_DIRS})
 endif ()
 if (HARFBUZZ_FOUND)
-  target_link_libraries(freetype ${HARFBUZZ_LIBRARIES})
+  target_link_libraries(freetype ${MAYBE_PRIVATE} ${HARFBUZZ_LIBRARIES})
   include_directories(${HARFBUZZ_INCLUDE_DIRS})
 endif ()
 
@@ -385,10 +395,15 @@
   DESTINATION include/freetype2/freetype/config
 )
 install(TARGETS freetype
+  EXPORT freetype-targets
   RUNTIME DESTINATION bin
   LIBRARY DESTINATION lib
   ARCHIVE DESTINATION lib
   FRAMEWORK DESTINATION Library/Frameworks
+)
+install(EXPORT freetype-targets
+  DESTINATION lib/cmake/freetype
+  FILE freetype-config.cmake
 )
 
 
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-11-27  Tamas Kenez  <[email protected]>
 
+	* CMakeLists.txt: Create `freetype-config.cmake' config module.
+
+2015-11-27  Tamas Kenez  <[email protected]>
+
 	* CMakeLists.txt: Set CMAKE_DEBUG_POSTFIX to `d'.
 
 2015-11-27  Tamas Kenez  <[email protected]>