aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuangqinjin <huangqinjin@gmail.com>2020-05-12 06:44:55 +0800
committerGitHub <noreply@github.com>2020-05-11 15:44:55 -0700
commit10bb90bbdf4eb2e6b528bde12edca239a37f28e5 (patch)
treefe188ff2b6085128bb83b31983c8ec5ca822be90
parente4ce6370667e05a0b2338c720ada9a23c9555843 (diff)
downloadvcpkg-10bb90bbdf4eb2e6b528bde12edca239a37f28e5.tar.gz
vcpkg-10bb90bbdf4eb2e6b528bde12edca239a37f28e5.zip
[glog] Disable tests (#11288)
-rw-r--r--ports/glog/CONTROL2
-rw-r--r--ports/glog/portfile.cmake4
2 files changed, 3 insertions, 3 deletions
diff --git a/ports/glog/CONTROL b/ports/glog/CONTROL
index ec6c47c84..649381e38 100644
--- a/ports/glog/CONTROL
+++ b/ports/glog/CONTROL
@@ -1,5 +1,5 @@
Source: glog
-Version: 0.4.0-2
+Version: 0.4.0-3
Homepage: https://github.com/google/glog
Description: C++ implementation of the Google logging module
Build-Depends: gflags
diff --git a/ports/glog/portfile.cmake b/ports/glog/portfile.cmake
index 0417b8676..8487cc192 100644
--- a/ports/glog/portfile.cmake
+++ b/ports/glog/portfile.cmake
@@ -1,5 +1,3 @@
-include(vcpkg_common_functions)
-
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO google/glog
@@ -13,6 +11,8 @@ vcpkg_from_github(
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
+ OPTIONS
+ -DBUILD_TESTING=OFF
)
vcpkg_install_cmake()