summaryrefslogtreecommitdiff
path: root/tests/projects/python/pybind/example/xmake.lua
blob: e8435e3604d6d792af16ef0545490bda17fcfcb2 (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 = false})
    add_files("src/*.cpp")
    add_packages("pybind11")
    set_languages("c++11")