update readme

This commit is contained in:
ZtRXR 2024-06-16 18:10:40 +08:00
parent c303d57370
commit 4093f0804d
1 changed files with 17 additions and 0 deletions

View File

@ -1,2 +1,19 @@
# pybind11_demo # pybind11_demo
# A demo shows how to write python with c++
```python
# make.py
from pymake import *
(
cmake("3.15")
.set("PYBIND11_FINDPYTHON", on)
.set(cmake_export_compile_commands, on)
.project("test_pybind11")
.find_package("pybind11","REQUIRED")
.pybind11_add_module(var(project_name),"main.cpp")
.write()
)
```