summaryrefslogtreecommitdiff
path: root/tests/projects/python/pybind/example_with_soabi/xmake.lua
blob: 1b43713e808cf13bec4f194d1084b7ea79c33df2 (plain)
1
2
3
4
5
6
7
8
add_rules("mode.release", "mode.debug")
add_requires("pybind11")

target("example")
    add_rules("python.module", {soabi = true})
    add_files("src/*.cpp")
    add_packages("pybind11")
    set_languages("c++11")