diff options
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb index 46bba8d8d1..9674ec0938 100644 --- a/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb | |||
@@ -17,4 +17,18 @@ BBCLASSEXTEND = "native" | |||
17 | 17 | ||
18 | EXTRA_OECMAKE = "-DPYBIND11_TEST=OFF" | 18 | EXTRA_OECMAKE = "-DPYBIND11_TEST=OFF" |
19 | 19 | ||
20 | inherit cmake python3native | 20 | inherit cmake setuptools3 python3native |
21 | |||
22 | do_configure() { | ||
23 | cmake_do_configure | ||
24 | } | ||
25 | |||
26 | do_compile() { | ||
27 | distutils3_do_compile | ||
28 | cmake_do_compile | ||
29 | } | ||
30 | |||
31 | do_install() { | ||
32 | distutils3_do_install | ||
33 | cmake_do_install | ||
34 | } | ||