diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-05-17 15:08:24 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-05-17 17:07:45 +0200 |
commit | a4c0c0704308ee18e3a23954c07666f36cfbb930 (patch) | |
tree | 35564bf974d20d3e3d7e4490f491bcdd209503ac /third-party/cmake/BuildLua.cmake | |
parent | f49699737c9b24e1af52719974cf3bc770539ef9 (diff) | |
download | rneovim-a4c0c0704308ee18e3a23954c07666f36cfbb930.tar.gz rneovim-a4c0c0704308ee18e3a23954c07666f36cfbb930.tar.bz2 rneovim-a4c0c0704308ee18e3a23954c07666f36cfbb930.zip |
revert: "ci: remove mingw job #18580"
This partially reverts commit f8af81445bb48966d54f4a956842d935d009d275.
The mingw parts of cmake was removed to see if it was still used
(ref: https://github.com/neovim/neovim/pull/18580). It turns out it is,
so this will fix that.
Closes: https://github.com/neovim/neovim/issues/18597
Diffstat (limited to 'third-party/cmake/BuildLua.cmake')
-rw-r--r-- | third-party/cmake/BuildLua.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/third-party/cmake/BuildLua.cmake b/third-party/cmake/BuildLua.cmake index 02f762234b..a40cb7dcb2 100644 --- a/third-party/cmake/BuildLua.cmake +++ b/third-party/cmake/BuildLua.cmake @@ -39,6 +39,8 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") set(LUA_TARGET freebsd) elseif(CMAKE_SYSTEM_NAME MATCHES "BSD") set(CMAKE_LUA_TARGET bsd) +elseif(CMAKE_SYSTEM_NAME MATCHES "^MINGW") + set(CMAKE_LUA_TARGET mingw) else() if(UNIX) set(LUA_TARGET posix) |