microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8bc8e43da10ff92869ffd485c5b9f5a497a229a6

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/googlere2.cmake

12lines · modecode

1FetchContent_Declare(
2 googlere2
3 GIT_REPOSITORY https://github.com/google/re2.git
4 GIT_TAG 2021-06-01
5 EXCLUDE_FROM_ALL
6)
7
8FetchContent_MakeAvailable(googlere2)
9set_target_properties(re2
10 PROPERTIES
11 POSITION_INDEPENDENT_CODE ON
12 FOLDER externals/google)
13