microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b708aeaaf44416bba84b87206fb550196fc60d5a

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/blingfire.cmake

15lines · modepreview

FetchContent_Declare(
        Blingfire
        GIT_REPOSITORY https://github.com/microsoft/BlingFire.git
        GIT_TAG master
)


FetchContent_GetProperties(Blingfire)

if (NOT blingfire_POPULATED)
    FetchContent_Populate(Blingfire)

    # enable size optimization build
    add_subdirectory(${blingfire_SOURCE_DIR} ${blingfire_BINARY_DIR} EXCLUDE_FROM_ALL)
endif ()