microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1ae69c0f7aeaab9911cf8ebf86ee92b34dadd26e

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/googlere2.cmake

15lines · modecode

1FetchContent_Declare(
2 googlere2
3 GIT_REPOSITORY https://github.com/google/re2.git
4 GIT_TAG 2020-11-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})
12 set_target_properties(re2
13 PROPERTIES
14 POSITION_INDEPENDENT_CODE ON)
15endif()
16