microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e0d48e255f28e5465f63e7fc141df1e1d533cc40

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/blingfire.cmake

19lines · modecode

1FetchContent_Declare(
2 Blingfire
3 GIT_REPOSITORY https://github.com/microsoft/BlingFire.git
4 GIT_TAG 0831265c1aca95ca02eca5bf1155e4251e545328
5)
6
7
8FetchContent_GetProperties(Blingfire)
9
10if (NOT blingfire_POPULATED)
11 FetchContent_Populate(Blingfire)
12
13 # enable size optimization build
14 add_subdirectory(${blingfire_SOURCE_DIR} ${blingfire_BINARY_DIR} EXCLUDE_FROM_ALL)
15 set_target_properties(bingfirtinydll_static PROPERTIES
16 FOLDER externals/bingfire)
17 set_target_properties(fsaClientTiny PROPERTIES
18 FOLDER externals/bingfire)
19endif()
20