summaryrefslogtreecommitdiff
path: root/tests/projects/c/protobuf/xmake.lua
blob: 9107bdc33d6f9a15f4d011a9b17c4b15dd39d023 (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")
add_requires("protobuf-c")

target("test")
    set_kind("binary")
    add_packages("protobuf-c")
    add_rules("protobuf.c")
    add_files("src/*.c")
    add_files("src/**.proto", {proto_rootdir = "src"})