diff options
| author | ruki <[email protected]> | 2024-02-02 09:50:14 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-02 09:50:14 +0800 |
| commit | b81eed59a532fdb69f8ef8533cf5b9ae22c381d8 (patch) | |
| tree | a6dc890de365cb05bbc4b3d46ed2e909dc4069e4 /tests/projects/c++/modules/staticlib/xmake.lua | |
| parent | 5c31fdb50c3230db5dd259d97285a8ac9e0fdf0c (diff) | |
| parent | b1005e8b51783d6ae0d997345dc365b7b6e3cbdf (diff) | |
Merge pull request #4321 from Arthapz/improve-modules-support
Refactor modules support
Diffstat (limited to 'tests/projects/c++/modules/staticlib/xmake.lua')
| -rw-r--r-- | tests/projects/c++/modules/staticlib/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/projects/c++/modules/staticlib/xmake.lua b/tests/projects/c++/modules/staticlib/xmake.lua index ca0e9e343..d353774e4 100644 --- a/tests/projects/c++/modules/staticlib/xmake.lua +++ b/tests/projects/c++/modules/staticlib/xmake.lua @@ -3,7 +3,7 @@ set_languages("c++20") target("mod") set_kind("static") - add_files("src/mod.mpp", "src/mod.cpp") + add_files("src/mod.mpp", "src/mod.cpp", {public = true}) target("hello") set_kind("binary") |
