summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/hello_with_pch/xmake.lua
blob: 79ddb6b58f8c56a944e1e997332d60a27c1044cc (plain)
1
2
3
4
5
6
7
add_rules("mode.release", "mode.debug")
set_languages("c++20")

target("hello")
    set_kind("binary")
    set_pcxxheader("src/test.h")
    add_files("src/*.cpp", "src/*.mpp")