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

target("example")
    add_rules("python.library")
    add_files("src/*.cpp")
    add_packages("pybind11")
    set_languages("c++11")