summaryrefslogtreecommitdiff
path: root/tests/projects/swig/python_cpp/xmake.lua
blob: f0c322310668f7726cc2e947c34168289106142e (plain)
1
2
3
4
5
6
7
8
add_rules("mode.release", "mode.debug")
add_requires("python 3.x")

target("example")
    add_rules("swig.cpp")
    add_files("src/example.i", {moduletype = "python", scriptdir = "share"})
    add_files("src/example.cpp")
    add_packages("python")