microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b7b8816dab43f095079c5c7609764c702e3c6e49

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 GIT_REPOSITORY https://github.com/google/googletest.git
4 GIT_TAG release-1.11.0
5)
6
7FetchContent_MakeAvailable(googletest)
8set_target_properties(gmock PROPERTIES FOLDER "externals/gtest")
9set_target_properties(gmock_main PROPERTIES FOLDER "externals/gtest")
10set_target_properties(gtest PROPERTIES FOLDER "externals/gtest")
11set_target_properties(gtest_main PROPERTIES FOLDER "externals/gtest")
12