summaryrefslogtreecommitdiff
path: root/xmake/languages/rust/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-11-13 13:52:57 +0800
committerruki <[email protected]>2021-11-13 13:52:57 +0800
commit80326fdfb7fa838d3dc79aa24c9dcc01519b173b (patch)
tree0c2461c8dc9ec446af28274983e11fe508cef200 /xmake/languages/rust/xmake.lua
parent6b684d5cc448124c31a51fff71e4043667677a57 (diff)
add edition for rust
Diffstat (limited to 'xmake/languages/rust/xmake.lua')
-rw-r--r--xmake/languages/rust/xmake.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/xmake/languages/rust/xmake.lua b/xmake/languages/rust/xmake.lua
index 1335225e3..ea71910b7 100644
--- a/xmake/languages/rust/xmake.lua
+++ b/xmake/languages/rust/xmake.lua
@@ -39,11 +39,14 @@ language("rust")
}
, binary = {
"config.linkdirs"
+ , "config.frameworkdirs"
, "target.linkdirs"
+ , "target.frameworkdirs"
, "target.rpathdirs"
, "target.strip"
, "target.symbols"
, "toolchain.linkdirs"
+ , "toolchain.frameworkdirs"
, "toolchain.rpathdirs"
, "config.frameworks"
, "target.frameworks"
@@ -57,11 +60,14 @@ language("rust")
}
, shared = {
"config.linkdirs"
+ , "config.frameworkdirs"
, "target.linkdirs"
+ , "target.frameworkdirs"
, "target.rpathdirs"
, "target.strip"
, "target.symbols"
, "toolchain.linkdirs"
+ , "toolchain.frameworkdirs"
, "toolchain.rpathdirs"
, "config.frameworks"
, "target.frameworks"
@@ -75,10 +81,13 @@ language("rust")
}
, static = {
"config.linkdirs"
+ , "config.frameworkdirs"
, "target.linkdirs"
+ , "target.frameworkdirs"
, "target.strip"
, "target.symbols"
, "toolchain.linkdirs"
+ , "toolchain.frameworkdirs"
, "config.frameworks"
, "target.frameworks"
, "toolchain.frameworks"