microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9edf572de9b3e5eb261ca06060e6b2e4ab4012df

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmake/externals/googletest.cmake

11lines · modecode

1FetchContent_Declare(
2 googletest
3 URL https://github.com/google/googletest/archive/refs/tags/v1.15.0.zip
4 URL_HASH SHA1=9d2d0af8d77ac726ea55d44a8fa727ec98311349
5 EXCLUDE_FROM_ALL
6)
7
8set(BUILD_GMOCK OFF CACHE BOOL "" FORCE)
9set(INSTALL_GTEST OFF CACHE BOOL "" FORCE)
10FetchContent_MakeAvailable(googletest)
11set_target_properties(gtest PROPERTIES FOLDER "externals/google")
12