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

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