from pymake import *
(
cmake("3.15")
.project("test_pybind11")
.pybind11_add_module(var(project_name),"main.cpp")
.write()
)