summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/cpp_with_moduledeps/xmake.lua
blob: 5c7a8a6f788c75b83d1324ad78693731f547bf5c (plain)
1
2
3
4
5
6
7
8
9
10
set_languages("c++20")

target("mod")
  set_kind("static")
  add_files("src/mod.mpp", "src/mod.cpp")

target("main")
  set_kind("binary")
  add_deps("mod")
  add_files("src/main.cpp")