initial commit

This commit is contained in:
2025-12-07 15:15:19 +01:00
commit 6574eebb49
5 changed files with 86 additions and 0 deletions

9
xmake.lua Normal file
View File

@@ -0,0 +1,9 @@
add_rules("mode.release", "mode.debug")
add_requires("python 3.12.3", "pybind11")
target("example")
set_prefixdir("$(prefixdir)/$(pythondir)", { libdir = "" })
add_rules("python.module")
add_files("src/*.cpp")
add_packages("pybind11")
set_languages("c++11")