microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9e7f8e5b1dd903dfdbb526fdb68db0ef83d9a7e8

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/googlere2.cmake

16lines · modecode

1FetchContent_Declare(
2 googlere2
3 GIT_REPOSITORY https://github.com/google/re2.git
4 GIT_TAG 2021-06-01
5)
6
7FetchContent_GetProperties(googlere2)
8string(TOLOWER "googlere2" lcName)
9if(NOT ${lcName}_POPULATED)
10 FetchContent_Populate(googlere2)
11 add_subdirectory(${googlere2_SOURCE_DIR} ${googlere2_BINARY_DIR} EXCLUDE_FROM_ALL)
12 set_target_properties(re2
13 PROPERTIES
14 POSITION_INDEPENDENT_CODE ON
15 FOLDER externals/google/re2)
16endif()
17