diff options
author | Emmanuel Thompson <eet6646@gmail.com> | 2022-05-09 09:41:37 -0400 |
---|---|---|
committer | Emmanuel Thompson <eet6646@gmail.com> | 2022-05-09 09:41:37 -0400 |
commit | 4dc82883460e58eca4fcd662e5ae4c5936bbe8bd (patch) | |
tree | b76ec4b4eefe96df401e8be5430af6b00f7bcffd /make | |
parent | a1bdfbc689ead61b8b615e4b8ab557f1e22bf9ce (diff) | |
download | lua-language-server-4dc82883460e58eca4fcd662e5ae4c5936bbe8bd.zip |
StringUtil.cpp in EmmyLuaCodeStyle requires wildcards lib
Fix for:
```
[59/82] Compile C++ build/obj/code_format/StringUtil.obj
FAILED: build/obj/code_format/StringUtil.obj
gcc -MMD -MT build/obj/code_format/StringUtil.obj -MF build/obj/code_format/StringUtil.obj.d -std=c++17 -O2 -Wall -fvisibility=hidden -I3rd/EmmyLuaCodeStyle/include -I3rd/bee.lua/3rd/lua -DNDEBUG -Wall -Werror -o build/obj/code_format/StringUtil.obj -c 3rd/EmmyLuaCodeStyle/Util/src/StringUtil.cpp
3rd/EmmyLuaCodeStyle/Util/src/StringUtil.cpp:5:10: fatal error: wildcards/match.hpp: No such file or directory
5 | #include "wildcards/match.hpp"
| ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
```
Diffstat (limited to 'make')
-rw-r--r-- | make/code_format.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/code_format.lua b/make/code_format.lua index 6f5f120b..e4fe09ed 100644 --- a/make/code_format.lua +++ b/make/code_format.lua @@ -7,7 +7,8 @@ lm:source_set 'code_format' { rootdir = '../3rd/EmmyLuaCodeStyle', includes = { "include", - "../bee.lua/3rd/lua" + "../bee.lua/3rd/lua", + "3rd/wildcards/include" }, sources = { -- codeFormatLib |