Alessandro Pezzoni
Alessandro Pezzoni
Poking around in `CMakeLists.txt`, I thought that ``` LUAINCLUDE_DIRS=/usr/local/Cellar/lua/5.4.4_1/include/ LUALIBRARIES=/usr/local/Cellar/lua/5.4.4_1/lib/ make ``` might work, but sadly that was not the case.
In my original investigation, I assumed that `LUAINCLUDE_DIRS` and `LUALIBRARIES` were environment variables, although after learning more about CMake it that turned out not to be the case. They are...
Alright, so adding `LUA_PREFERRED_INCLUDE_DIRS` to the includes list of the `textmate` target gets me almost all the way. ``` diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f24095..dc52b05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt...
Looks like Lua should be able to load both `.so` and `.dylib` objects, but from my understanding of the conversation in https://github.com/neovim/neovim/issues/21749#issuecomment-1418427487, `.so` should be preferred. Configuring the `textmate` library...
@Emptyfruit No, unfortunately I was never able to get it to work.