about summary refs log tree commit diff
path: root/third_party/glog/cmake/TestPackageConfig.cmake
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-02-07T19·15+0300
committertazjin <tazjin@tvl.su>2022-02-07T22·25+0000
commit5ed7ef8089a6914a81b7592d2b6db93c5d87a1e2 (patch)
treed1b86294fd613ed62f131a4ba67bc6e3adf2fc61 /third_party/glog/cmake/TestPackageConfig.cmake
parent18c8c41b5c2de5a08530b5185cefef86f6ffaff5 (diff)
chore(3p/glog): Unvendor glog r/3784
... and build //third_party/nix with the one from nixpkgs.

Change-Id: Iae7f1772a31286f2c22955cdc1fe61ee82d112aa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3016
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'third_party/glog/cmake/TestPackageConfig.cmake')
-rw-r--r--third_party/glog/cmake/TestPackageConfig.cmake33
1 files changed, 0 insertions, 33 deletions
diff --git a/third_party/glog/cmake/TestPackageConfig.cmake b/third_party/glog/cmake/TestPackageConfig.cmake
deleted file mode 100644
index 191c3cac2351..000000000000
--- a/third_party/glog/cmake/TestPackageConfig.cmake
+++ /dev/null
@@ -1,33 +0,0 @@
-# Create the build directory
-execute_process (
-  COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_BINARY_DIR}
-  RESULT_VARIABLE _DIRECTORY_CREATED_SUCCEEDED
-)
-
-if (NOT _DIRECTORY_CREATED_SUCCEEDED EQUAL 0)
-  message (FATAL_ERROR "Failed to create build directory")
-endif (NOT _DIRECTORY_CREATED_SUCCEEDED EQUAL 0)
-
-# Capture the PATH environment variable content set during project
-# generation stage. This is required because later during the build stage
-# the PATH is modified again (e.g., for MinGW AppVeyor CI builds) by adding
-# back the directory containing git.exe. Incidently, the Git installation
-# directory also contains sh.exe which causes MinGW Makefile generation to
-# fail.
-set (ENV{PATH} ${PATH})
-
-# Run CMake
-execute_process (
-  COMMAND ${CMAKE_COMMAND} -C ${INITIAL_CACHE}
-    -G ${GENERATOR}
-    -DCMAKE_PREFIX_PATH=${PACKAGE_DIR}
-    -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON
-    -DCMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY=ON
-    ${SOURCE_DIR}
-  WORKING_DIRECTORY ${TEST_BINARY_DIR}
-  RESULT_VARIABLE _GENERATE_SUCCEEDED
-)
-
-if (NOT _GENERATE_SUCCEEDED EQUAL 0)
-  message (FATAL_ERROR "Failed to generate project files using CMake")
-endif (NOT _GENERATE_SUCCEEDED EQUAL 0)