diff options
| author | ruki <[email protected]> | 2023-10-12 22:08:59 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-12 22:08:59 -0500 |
| commit | 97ffd7a145521e930a237e8977e73fdf3d41dbf4 (patch) | |
| tree | fe24a7a54b5ab2f3396b46cda800cb6fc49ae752 /tests/projects | |
| parent | 654050350b33b0f2dc6d472404b14ddd9795592c (diff) | |
| parent | a21b15db6a5a6228c756c7e6b7acb3283aebfacb (diff) | |
Merge pull request #4283 from xmake-io/includes
Improve builtin includes
Diffstat (limited to 'tests/projects')
| -rw-r--r-- | tests/projects/qt/quickapp_static/xmake.lua | 2 | ||||
| -rw-r--r-- | tests/projects/qt/widgetapp_static/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/qt/quickapp_static/xmake.lua b/tests/projects/qt/quickapp_static/xmake.lua index 196749658..b6bc9a8cb 100644 --- a/tests/projects/qt/quickapp_static/xmake.lua +++ b/tests/projects/qt/quickapp_static/xmake.lua @@ -1,6 +1,6 @@ add_rules("mode.debug", "mode.release") -includes("qt_add_static_plugins.lua") +includes("@builtin/qt") target("demo") add_rules("qt.quickapp_static") diff --git a/tests/projects/qt/widgetapp_static/xmake.lua b/tests/projects/qt/widgetapp_static/xmake.lua index 8ae0094bf..5ca10c888 100644 --- a/tests/projects/qt/widgetapp_static/xmake.lua +++ b/tests/projects/qt/widgetapp_static/xmake.lua @@ -1,6 +1,6 @@ add_rules("mode.debug", "mode.release") -includes("qt_add_static_plugins.lua") +includes("@builtin/qt") target("demo") add_rules("qt.widgetapp_static") |
