diff options
author | actboy168 <actboy168@gmail.com> | 2020-06-04 09:46:43 +0800 |
---|---|---|
committer | actboy168 <actboy168@gmail.com> | 2020-06-04 09:46:43 +0800 |
commit | 7b68ebb354bc6301ab136f4cc41339eb9a855830 (patch) | |
tree | 9a8fbd84c0bc118f8737016c19886a4cb5a13678 | |
parent | c21f410d16d03a24464e21212cb7dfe8f7787746 (diff) | |
download | lua-language-server-7b68ebb354bc6301ab136f4cc41339eb9a855830.zip |
Specify the minimum version of macos #170
m--------- | 3rd/bee.lua | 0 | ||||
-rw-r--r-- | make.lua | 6 |
2 files changed, 6 insertions, 0 deletions
diff --git a/3rd/bee.lua b/3rd/bee.lua -Subproject 2b8b3fa20816dfa0909aed867f55bcb09f03a97 +Subproject 6dc6a9af0d0d22fc5b899cbdb047f8585c78a86 @@ -3,6 +3,12 @@ local platform = require "bee.platform" lm.arch = 'x64' +if lm.plat == "macos" then + lm.flags = { + "-mmacosx-version-min=10.13", + } +end + lm:import '3rd/bee.lua/make.lua' lm.rootdir = '3rd/' |