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

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