diff options
| author | ruki <[email protected]> | 2018-06-14 22:38:41 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-06-14 09:52:09 +0800 |
| commit | ec8068f4d052e4c4536fd485f9c9eb815e451397 (patch) | |
| tree | 22944defd9f3f91ccf16a1d277be151d0df164e9 /xmake/rules/wdk/xmake.lua | |
| parent | 16b501fbc388f1b207faf1475602388b9e09983e (diff) | |
add before_load and after_load for rule
Diffstat (limited to 'xmake/rules/wdk/xmake.lua')
| -rw-r--r-- | xmake/rules/wdk/xmake.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/rules/wdk/xmake.lua b/xmake/rules/wdk/xmake.lua index 4a9adbc0d..cc6bab715 100644 --- a/xmake/rules/wdk/xmake.lua +++ b/xmake/rules/wdk/xmake.lua @@ -26,7 +26,7 @@ rule("wdk.driver") -- add rules - add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof", "wdk.sign", "wdk.package.cab") + add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof", "wdk.tracewpp", "wdk.sign", "wdk.package.cab") -- on load on_load(function (target) @@ -67,7 +67,7 @@ rule("wdk.driver") rule("wdk.binary") -- add rules - add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof") + add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof", "wdk.tracewpp") -- on load on_load(function (target) @@ -84,7 +84,7 @@ rule("wdk.binary") rule("wdk.static") -- add rules - add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof") + add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof", "wdk.tracewpp") -- on load on_load(function (target) @@ -103,7 +103,7 @@ rule("wdk.static") rule("wdk.shared") -- add rules - add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof") + add_deps("wdk.inf", "wdk.man", "wdk.mc", "wdk.mof", "wdk.tracewpp") -- on load on_load(function (target) |
