diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-11 16:14:15 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-11 16:14:15 +0200 |
| commit | 362e731a904975eefbc337ef0a8cc3562d1ae6e8 (patch) | |
| tree | 7dea4c947302141ac109ffadfc7aecca3922bb95 /xmake/rules/platform/xmake.lua | |
| parent | 221ca3c95b37338b16446349e326c3adc935ea25 (diff) | |
(rules) move platform.windows.subsystem rule to its right directory and add it to platform.windows
Diffstat (limited to 'xmake/rules/platform/xmake.lua')
| -rw-r--r-- | xmake/rules/platform/xmake.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xmake/rules/platform/xmake.lua b/xmake/rules/platform/xmake.lua index 0cf18af90..ee2afaaa2 100644 --- a/xmake/rules/platform/xmake.lua +++ b/xmake/rules/platform/xmake.lua @@ -19,12 +19,13 @@ -- rule("platform.wasm") - add_deps("platform.wasm.preloadfiles") - add_deps("platform.wasm.installfiles") + add_deps("platform.wasm.preloadfiles", + "platform.wasm.installfiles") rule("platform.windows") - add_deps("platform.windows.def") - add_deps("platform.windows.idl") + add_deps("platform.windows.def", + "platform.windows.idl", + "platform.windows.subsystem") if is_host("windows") then add_deps("platform.windows.manifest") end |
