blob: 17007fdda4235c9d94b8b2404095bd6cc0c76cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
local lm = require 'luamake'
lm:source_set 'code_format' {
rootdir = '../3rd/EmmyLuaCodeStyle',
includes = {
"include",
"../bee.lua/3rd/lua"
},
sources = {
-- codeFormatLib
"CodeFormatLib/src/*.cpp",
-- LuaParser
"LuaParser/src/*.cpp",
"LuaParser/src/LuaAstNode/LuaAstNode.cpp",
-- Util
"Util/src/StringUtil.cpp",
"Util/src/Utf8.cpp",
--CodeService
"CodeService/src/*.cpp",
"CodeService/src/FormatElement/*.cpp",
"CodeService/src/NameStyle/*.cpp"
},
macos = {
-- macosx10.12不支持完整的std filesystem,只好砍功能
defines = "NOT_SURPPORT_FILE_SYSTEM",
},
}
|