summaryrefslogtreecommitdiff
path: root/tests/projects/embed/verilator/static/xmake.lua
blob: b681e90d35b93999a682bbfd1d53105c263ae4fc (plain)
1
2
3
4
5
6
7
8
9
10
add_requires("verilator")

target("hello")
    add_rules("verilator.static")
    set_toolchains("@verilator")
    add_files("src/*.v")

target("test")
    add_deps("hello")
    add_files("src/*.cpp")