diff options
| author | Phoebe <20694052+PhoebeHui@users.noreply.github.com> | 2020-03-10 08:19:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-09 17:19:31 -0700 |
| commit | 8fe412611cfbd756781d698c05e0b837f7cfa364 (patch) | |
| tree | 2c844301e32c66a32098efe4178fc4e791401480 | |
| parent | d0b1f2a9e8ed1ea53d181d13c69e15cf775148db (diff) | |
| download | vcpkg-8fe412611cfbd756781d698c05e0b837f7cfa364.tar.gz vcpkg-8fe412611cfbd756781d698c05e0b837f7cfa364.zip | |
[folly] Fix dependency issue in config file (#10315)
| -rw-r--r-- | ports/folly/CONTROL | 2 | ||||
| -rw-r--r-- | ports/folly/portfile.cmake | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/folly/CONTROL b/ports/folly/CONTROL index 77c75a702..b4c11a45b 100644 --- a/ports/folly/CONTROL +++ b/ports/folly/CONTROL @@ -1,5 +1,5 @@ Source: folly -Version: 2019.10.21.00 +Version: 2019.10.21.00-1 Homepage: https://github.com/facebook/folly Description: An open-source C++ library developed and used at Facebook. The library is UNSTABLE on Windows Build-Depends: openssl, libevent, double-conversion, glog, gflags, boost-chrono, boost-context, boost-conversion, boost-crc, boost-date-time, boost-filesystem, boost-multi-index, boost-program-options, boost-regex, boost-system, boost-thread, boost-smart-ptr diff --git a/ports/folly/portfile.cmake b/ports/folly/portfile.cmake index bfe4aa7e6..52645357a 100644 --- a/ports/folly/portfile.cmake +++ b/ports/folly/portfile.cmake @@ -87,6 +87,7 @@ FILE(WRITE ${CURRENT_PACKAGES_DIR}/share/folly/folly-config.cmake "include(CMakeFindDependencyMacro) find_dependency(Threads) find_dependency(glog CONFIG) +find_dependency(gflags CONFIG REQUIRED) ${_contents}") file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) |
