mirror of
https://github.com/neovim/neovim.git
synced 2025-12-09 16:12:48 +00:00
CMake: Build third-party deps in Windows
- Update recipes to build with MSVC or cross compile in Unix with Mingw
- For recipes that need to be reused, wrap recipe in CMake function
using cmake_parse_arguments
- New directory .deps/host is the install root for HOST targets, the old
.deps/usr is used for TARGET
- In windows disable builds for terminal libraries and jemalloc
- Added cmake script CopyFilesGlob.cmake to copy files using glob
cmake -DFROM_GLOB=*.h -DTO=/usr/include -P CopyFilesGlob.cmake
- New CMake variables HOSTDEPS_* can be used in cross compile recipes.
Except when the target is UNIX, since that would break 32bit builds
in 64bit Unix systems using the Travis 32bit toolchain
This commit is contained in:
committed by
Florian Walch
parent
73dbd14283
commit
cca32e64cc
5
third-party/cmake/BuildJeMalloc.cmake
vendored
5
third-party/cmake/BuildJeMalloc.cmake
vendored
@@ -1,3 +1,8 @@
|
||||
if(WIN32)
|
||||
message(STATUS "Building jemalloc in Windows is not supported (skipping)")
|
||||
return()
|
||||
endif()
|
||||
|
||||
ExternalProject_Add(jemalloc
|
||||
PREFIX ${DEPS_BUILD_DIR}
|
||||
URL ${JEMALLOC_URL}
|
||||
|
||||
Reference in New Issue
Block a user