summaryrefslogtreecommitdiff
path: root/tests/projects/swig/python_c/xmake.lua
blob: 89b13cbd455dbe77364f65941a1c9b9c9653b02f (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.c")
    add_files("src/example.i", {moduletype = "python", scriptdir = "share"})
    add_files("src/example.c")
    add_packages("python")