mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 22:08:18 +00:00

- 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
25 lines
809 B
CMake
25 lines
809 B
CMake
if(WIN32)
|
|
message(STATUS "Building Unibilium in Windows is not supported (skipping)")
|
|
return()
|
|
endif()
|
|
|
|
ExternalProject_Add(unibilium
|
|
PREFIX ${DEPS_BUILD_DIR}
|
|
URL ${UNIBILIUM_URL}
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/unibilium
|
|
DOWNLOAD_COMMAND ${CMAKE_COMMAND}
|
|
-DPREFIX=${DEPS_BUILD_DIR}
|
|
-DDOWNLOAD_DIR=${DEPS_DOWNLOAD_DIR}/unibilium
|
|
-DURL=${UNIBILIUM_URL}
|
|
-DEXPECTED_SHA256=${UNIBILIUM_SHA256}
|
|
-DTARGET=unibilium
|
|
-P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_IN_SOURCE 1
|
|
BUILD_COMMAND ${MAKE_PRG} CC=${DEPS_C_COMPILER}
|
|
PREFIX=${DEPS_INSTALL_DIR}
|
|
CFLAGS=-fPIC
|
|
INSTALL_COMMAND ${MAKE_PRG} PREFIX=${DEPS_INSTALL_DIR} install)
|
|
|
|
list(APPEND THIRD_PARTY_DEPS unibilium)
|