pymake/tests/generate_pybind11.py

9 lines
142 B
Python
Raw Normal View History

2024-06-15 15:22:44 +00:00
from pymake import *
2024-06-15 14:31:29 +00:00
(
cmake("3.15")
2024-06-15 15:22:44 +00:00
.project("test_pybind11")
.pybind11_add_module(var(project_name),"main.cpp")
2024-06-15 14:31:29 +00:00
.write()
)