summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schreiber <schreiber.arthur@gmail.com>2015-05-05 22:36:24 +0200
committerArthur Schreiber <schreiber.arthur@gmail.com>2015-05-05 22:36:24 +0200
commit7a5c755989da9b364b6c1d2f88aca33c00df39b2 (patch)
tree4ecd38541faf3e6ca9333735a2ce78370f209336
parentb162d97a4f33dbb8d24c2b07ff2f379a074e24ef (diff)
downloadlibgit2-7a5c755989da9b364b6c1d2f88aca33c00df39b2.tar.gz
Ensure frameworks are mentioned in libgit2.pc
When building on Mac OS X, the `CoreFoundation` and `Security` frameworks where missing from `Libs.private` in the generated `libgit2.pc` file.
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5c8bf7ab8..935129d04 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -156,10 +156,12 @@ INCLUDE_DIRECTORIES(src include)
IF (SECURITY_FOUND)
MESSAGE("-- Found Security ${SECURITY_DIRS}")
+ SET(LIBGIT2_PC_LIBS "${LIBGIT2_PC_LIBS} -framework Security")
ENDIF()
IF (COREFOUNDATION_FOUND)
MESSAGE("-- Found CoreFoundation ${COREFOUNDATION_DIRS}")
+ SET(LIBGIT2_PC_LIBS "${LIBGIT2_PC_LIBS} -framework CoreFoundation")
ENDIF()