summaryrefslogtreecommitdiff
path: root/tests/projects/pascal/console_with_c/xmake.lua
blob: 111efc0c9d88bfb56ae051cbe67218cdcf25fd9f (plain)
1
2
3
4
5
6
7
8
9
add_rules("mode.debug", "mode.release")
target("foo")
    set_kind("static")
    add_files("src/foo.c")

target("test")
    set_kind("binary")
    add_deps("foo")
    add_files("src/main.pas")