aboutsummaryrefslogtreecommitdiff
path: root/Externals/CMakeModules/FindGoogleTest.cmake
diff options
context:
space:
mode:
authorMarijn Tamis <[email protected]>2019-04-01 14:21:09 +0200
committerMarijn Tamis <[email protected]>2019-04-01 14:21:09 +0200
commitd243404d4ba88bcf53f7310cc8980b4efe38c19f (patch)
treedcc8ce2904e9f813e03f71f825c4d3c9ec565d91 /Externals/CMakeModules/FindGoogleTest.cmake
parentAdd new SetSpheres and SetPlanes api's to bring them in line with setTriangles. (diff)
downloadnvcloth-1.1.6.tar.xz
nvcloth-1.1.6.zip
1.1.6 Release.1.1.6
Diffstat (limited to 'Externals/CMakeModules/FindGoogleTest.cmake')
-rw-r--r--Externals/CMakeModules/FindGoogleTest.cmake26
1 files changed, 0 insertions, 26 deletions
diff --git a/Externals/CMakeModules/FindGoogleTest.cmake b/Externals/CMakeModules/FindGoogleTest.cmake
deleted file mode 100644
index c15e201..0000000
--- a/Externals/CMakeModules/FindGoogleTest.cmake
+++ /dev/null
@@ -1,26 +0,0 @@
-# - Try to find GoogleTest
-# Once done this will define
-# GOOGLETEST_FOUND - System has GoogleTest
-# GOOGLETEST_INCLUDE_DIR - The GoogleTest include directory
-# GOOGLETEST_SRC_DIR - The GoogleTest src directory
-
-FIND_PATH( GOOGLETEST_INCLUDE_DIR gtest/gtest.h
- HINTS
- ${GW_DEPS_ROOT}/GoogleTest
- ${GW_DEPS_ROOT}/sw/physx/externals/GoogleTest/gtest-1.4.0
- PATH_SUFFIXES include
- NO_DEFAULT_PATH
- NO_CMAKE_FIND_ROOT_PATH)
-
-FIND_PATH( GOOGLETEST_SRC_DIR gtest.cpp
- HINTS
- ${GW_DEPS_ROOT}/GoogleTest
- ${GW_DEPS_ROOT}/sw/physx/externals/GoogleTest/gtest-1.4.0
- PATH_SUFFIXES src
- NO_DEFAULT_PATH
- NO_CMAKE_FIND_ROOT_PATH)
-
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(GoogleTest DEFAULT_MSG GOOGLETEST_INCLUDE_DIR GOOGLETEST_SRC_DIR)
-
-mark_as_advanced(GOOGLETEST_INCLUDE_DIR GOOGLETEST_SRC_DIR)