diff options
| author | Arthur LAURENT <[email protected]> | 2024-02-05 17:30:02 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-02-05 17:30:02 +0100 |
| commit | cf0e793a7cee0e1225c307473794245529cbc302 (patch) | |
| tree | 37a1d666061aa81ce08c64110736f26047a1aa5d /tests/projects/c++/modules/staticlib/xmake.lua | |
| parent | 0b8ea930d1d9cc7dbb38fa62d1331f2addbbdc66 (diff) | |
fix tests
Diffstat (limited to 'tests/projects/c++/modules/staticlib/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/staticlib/xmake.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/projects/c++/modules/staticlib/xmake.lua b/tests/projects/c++/modules/staticlib/xmake.lua index d353774e4..9e1cf4221 100644 --- a/tests/projects/c++/modules/staticlib/xmake.lua +++ b/tests/projects/c++/modules/staticlib/xmake.lua @@ -3,7 +3,8 @@ set_languages("c++20") target("mod") set_kind("static") - add_files("src/mod.mpp", "src/mod.cpp", {public = true}) + add_files("src/mod.mpp", {public = true}) + add_files("src/mod.cpp") target("hello") set_kind("binary") |
