pybind.cmake 450 字节
Newer Older
1
include(FetchContent)
H
Hui Zhang 已提交
2 3
include(ExternalProject)

4 5 6
#the pybind11 is from:https://github.com/pybind/pybind11
# Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved.

7 8
FetchContent_Declare(
  pybind
9
  URL      https://paddleaudio.bj.bcebos.com/build/v2.10.0.zip
Y
YangZhou 已提交
10
  URL_HASH SHA256=225df6e6dea7cea7c5754d4ed954e9ca7c43947b849b3795f87cb56437f1bd19
11 12 13 14
)
FetchContent_MakeAvailable(pybind)
include_directories(${pybind_SOURCE_DIR}/include)