2019-09-24 04:46:16 +08:00
|
|
|
vcpkg_from_github(
|
2019-03-30 14:23:18 +08:00
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2019-09-24 04:46:16 +08:00
|
|
|
REPO ffmpeg/ffmpeg
|
|
|
|
REF n4.2
|
|
|
|
SHA512 9fa56364696f91e2bf4287954d26f0c35b3f8aad241df3fbd3c9fc617235d8c83b28ddcac88436383b2eb273f690322e6f349e2f9c64d02f0058a4b76fa55035
|
|
|
|
HEAD_REF master
|
2019-03-30 14:23:18 +08:00
|
|
|
PATCHES
|
2019-09-24 04:46:16 +08:00
|
|
|
0001-create-lib-libraries.patch
|
|
|
|
0003-fix-windowsinclude.patch
|
|
|
|
0004-fix-debug-build.patch
|
|
|
|
0005-fix-libvpx-linking.patch
|
2020-04-28 05:43:29 +08:00
|
|
|
0006-fix-StaticFeatures.patch
|
2019-03-30 14:23:18 +08:00
|
|
|
)
|
|
|
|
|
2018-03-24 08:02:23 +08:00
|
|
|
if (${SOURCE_PATH} MATCHES " ")
|
|
|
|
message(FATAL_ERROR "Error: ffmpeg will not build with spaces in the path. Please use a directory with no spaces")
|
|
|
|
endif()
|
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
vcpkg_find_acquire_program(YASM)
|
|
|
|
get_filename_component(YASM_EXE_PATH ${YASM} DIRECTORY)
|
|
|
|
|
2019-08-07 04:25:50 +08:00
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
2019-06-01 07:25:56 +08:00
|
|
|
set(SEP ";")
|
2019-06-04 07:42:09 +08:00
|
|
|
#We're assuming that if we're building for Windows we're using MSVC
|
2019-06-01 07:25:56 +08:00
|
|
|
set(INCLUDE_VAR "INCLUDE")
|
|
|
|
set(LIB_PATH_VAR "LIB")
|
|
|
|
else()
|
2019-06-04 07:42:09 +08:00
|
|
|
set(SEP ":")
|
2019-06-01 07:25:56 +08:00
|
|
|
set(INCLUDE_VAR "CPATH")
|
|
|
|
set(LIB_PATH_VAR "LIBRARY_PATH")
|
|
|
|
endif()
|
|
|
|
|
2019-08-07 04:25:50 +08:00
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
2019-04-10 14:02:31 +08:00
|
|
|
set(ENV{PATH} "$ENV{PATH};${YASM_EXE_PATH}")
|
2019-06-01 07:25:56 +08:00
|
|
|
|
2019-04-10 14:02:31 +08:00
|
|
|
set(BUILD_SCRIPT ${CMAKE_CURRENT_LIST_DIR}\\build.sh)
|
|
|
|
|
2019-06-07 07:04:28 +08:00
|
|
|
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
2019-04-05 13:32:10 +08:00
|
|
|
vcpkg_acquire_msys(MSYS_ROOT PACKAGES perl gcc diffutils make)
|
|
|
|
else()
|
|
|
|
vcpkg_acquire_msys(MSYS_ROOT PACKAGES diffutils make)
|
|
|
|
endif()
|
[openexr,openimageio,suitesparse,theia] updates for non-win32 (#6371)
* [openexr,openimageio,suitesparse,theia] updates for non-win32
* [theia] use only valid cmake symbols
* [suitesparse] Fix build
* [lapack] still not properly integrating with other ports
* [lapack] intercept cmake module calls and substitute them with our defs
* [suitesparse,clapack] fixes for proper integration
* [ceres,clapack] bump CONTROL
* [suitesparse] remove unnecessary defs
* [clapack] improve wrapper logic
* [WIN32] remove wrong symbol
* [clapack] fix wrapper integration
* [Accelerate] use best framework when available
* [clapack] separate config from wrapper
* [clapack] fix paths and filenames
* [mlpack,armadillo,clapack] improve library handling
* [mlpack] remove unnecessary cmake option
* [clp,coinutils,osi,liblemon] dependencies of openmvg, improve compatibility with non-win32
* [openmvg] fix for case-sensitive filesystems
* [clp,coinutils,osi] simplify CMakeLists removing many unnecessary steps
* [sophus] Force rebuild
* [theia] fixes for linux, part1
* [io2d] remove broken sintax
* [fontconfig] bump version to remove CI cached failure
* [theia] fixes for linux, part2
* [theia] remove unnecessary empty folders and comments from portfile
* [theia] use correct build type removing forced vars in cmakelists.txt
* [openmvg] add missing suitesparse target detection
* [sophus] fix Suitesparse dependency
* [sophus,openmvg] use suitesparse lowercase for module compatibility on case-sensitive filesystems
* [suitesparse] fixes for case-sensitive filesystems
* [openmvg] use correct Eigen3 name for case-sensitive filesystems
* [sophus] trigger rebuild
* [shogun] use modern vcpkg style
* [shogun] add missing cmake system processor symbol
2019-06-01 06:48:17 +08:00
|
|
|
|
2019-04-10 14:02:31 +08:00
|
|
|
set(BASH ${MSYS_ROOT}/usr/bin/bash.exe)
|
2018-02-24 16:00:51 +08:00
|
|
|
else()
|
2019-04-10 14:02:31 +08:00
|
|
|
set(ENV{PATH} "$ENV{PATH}:${YASM_EXE_PATH}")
|
|
|
|
set(BASH /bin/bash)
|
|
|
|
set(BUILD_SCRIPT ${CMAKE_CURRENT_LIST_DIR}/build_linux.sh)
|
2018-02-24 16:00:51 +08:00
|
|
|
endif()
|
2019-04-05 13:32:10 +08:00
|
|
|
|
2019-06-01 07:25:56 +08:00
|
|
|
set(ENV{${INCLUDE_VAR}} "${CURRENT_INSTALLED_DIR}/include${SEP}$ENV{${INCLUDE_VAR}}")
|
2017-03-02 23:29:00 +08:00
|
|
|
|
|
|
|
set(_csc_PROJECT_PATH ffmpeg)
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
|
|
|
|
2018-09-03 04:06:07 +08:00
|
|
|
set(OPTIONS "--enable-asm --enable-yasm --disable-doc --enable-debug")
|
2017-03-02 23:29:00 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --enable-runtime-cpudetect")
|
2018-03-12 21:13:14 +08:00
|
|
|
|
|
|
|
if("nonfree" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-nonfree")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("gpl" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-gpl")
|
|
|
|
endif()
|
|
|
|
|
2019-12-24 07:37:41 +08:00
|
|
|
if("version3" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-version3")
|
|
|
|
endif()
|
|
|
|
|
2017-11-05 05:54:12 +08:00
|
|
|
if("openssl" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-openssl")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-openssl")
|
|
|
|
endif()
|
2017-06-18 02:30:03 +08:00
|
|
|
|
2018-09-03 04:06:07 +08:00
|
|
|
if("ffmpeg" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-ffmpeg")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-ffmpeg")
|
|
|
|
endif()
|
|
|
|
|
2018-03-12 21:13:14 +08:00
|
|
|
if("ffplay" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-ffplay")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-ffplay")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("ffprobe" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-ffprobe")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-ffprobe")
|
|
|
|
endif()
|
|
|
|
|
2019-06-11 00:07:18 +08:00
|
|
|
if("vpx" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-libvpx")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-libvpx")
|
|
|
|
endif()
|
|
|
|
|
2018-03-12 21:13:14 +08:00
|
|
|
if("x264" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-libx264")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-libx264")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("opencl" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-opencl")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-opencl")
|
|
|
|
endif()
|
|
|
|
|
2019-09-24 04:46:16 +08:00
|
|
|
set (ENABLE_LZMA OFF)
|
2018-03-12 21:13:14 +08:00
|
|
|
if("lzma" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-lzma")
|
2019-09-24 04:46:16 +08:00
|
|
|
set (ENABLE_LZMA ON) #necessary for configuring FFMPEG CMake Module
|
2018-03-12 21:13:14 +08:00
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-lzma")
|
|
|
|
endif()
|
|
|
|
|
2019-09-24 04:46:16 +08:00
|
|
|
set (ENABLE_BZIP2 OFF)
|
2019-05-23 19:42:10 +08:00
|
|
|
if("bzip2" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-bzlib")
|
2019-09-24 04:46:16 +08:00
|
|
|
set (ENABLE_BZIP2 ON) #necessary for configuring FFMPEG CMake Module
|
2019-05-23 19:42:10 +08:00
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-bzlib")
|
|
|
|
endif()
|
2018-03-12 21:13:14 +08:00
|
|
|
|
2020-08-07 13:17:38 +08:00
|
|
|
set(ENABLE_AVRESAMPLE OFF)
|
2019-08-09 13:37:53 +08:00
|
|
|
if("avresample" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-avresample")
|
2020-08-07 13:17:38 +08:00
|
|
|
set(ENABLE_AVRESAMPLE ON) #necessary for configuring FFMPEG CMake Module
|
2019-08-09 13:37:53 +08:00
|
|
|
endif()
|
|
|
|
|
2020-03-28 11:34:59 +08:00
|
|
|
if (VCPKG_TARGET_IS_OSX)
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-vdpau") # disable vdpau in OSX
|
|
|
|
endif()
|
|
|
|
|
2020-03-25 04:00:09 +08:00
|
|
|
if("nvcodec" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-cuda --enable-nvenc --enable-cuvid --disable-libnpp")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-cuda --disable-nvenc --disable-cuvid --disable-libnpp")
|
|
|
|
endif()
|
|
|
|
|
2020-06-24 04:40:35 +08:00
|
|
|
if("avisynthplus" IN_LIST FEATURES)
|
2020-06-30 06:37:40 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --enable-avisynth")
|
2020-06-24 04:40:35 +08:00
|
|
|
else()
|
2020-06-30 06:37:40 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --disable-avisynth")
|
2020-06-24 04:40:35 +08:00
|
|
|
endif()
|
|
|
|
|
2019-06-07 07:04:28 +08:00
|
|
|
set(OPTIONS_CROSS "")
|
|
|
|
|
|
|
|
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
|
|
set(OPTIONS_CROSS " --enable-cross-compile --target-os=win32 --arch=${VCPKG_TARGET_ARCHITECTURE}")
|
|
|
|
vcpkg_find_acquire_program(GASPREPROCESSOR)
|
|
|
|
foreach(GAS_PATH ${GASPREPROCESSOR})
|
|
|
|
get_filename_component(GAS_ITEM_PATH ${GAS_PATH} DIRECTORY)
|
|
|
|
set(ENV{PATH} "$ENV{PATH};${GAS_ITEM_PATH}")
|
|
|
|
endforeach(GAS_PATH)
|
|
|
|
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
|
|
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unsupported architecture")
|
|
|
|
endif()
|
|
|
|
|
2020-03-28 11:34:59 +08:00
|
|
|
if(VCPKG_TARGET_IS_UWP)
|
2017-11-05 05:54:12 +08:00
|
|
|
set(ENV{LIBPATH} "$ENV{LIBPATH};$ENV{_WKITS10}references\\windows.foundation.foundationcontract\\2.0.0.0\\;$ENV{_WKITS10}references\\windows.foundation.universalapicontract\\3.0.0.0\\")
|
2019-06-07 07:04:28 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --disable-programs")
|
2017-06-18 02:30:03 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --extra-cflags=-DWINAPI_FAMILY=WINAPI_FAMILY_APP --extra-cflags=-D_WIN32_WINNT=0x0A00")
|
2019-06-07 07:04:28 +08:00
|
|
|
set(OPTIONS_CROSS " --enable-cross-compile --target-os=win32 --arch=${VCPKG_TARGET_ARCHITECTURE}")
|
2017-06-18 02:30:03 +08:00
|
|
|
endif()
|
|
|
|
|
2019-09-24 04:46:16 +08:00
|
|
|
set(OPTIONS_DEBUG "--debug") # Note: --disable-optimizations can't be used due to http://ffmpeg.org/pipermail/libav-user/2013-March/003945.html
|
2017-06-20 16:08:04 +08:00
|
|
|
set(OPTIONS_RELEASE "")
|
2017-03-02 23:29:00 +08:00
|
|
|
|
2019-06-07 07:04:28 +08:00
|
|
|
set(OPTIONS "${OPTIONS} ${OPTIONS_CROSS}")
|
2017-11-05 05:54:12 +08:00
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-static --enable-shared")
|
2020-03-28 11:34:59 +08:00
|
|
|
if (VCPKG_TARGET_IS_UWP)
|
2017-06-18 02:30:03 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --extra-ldflags=-APPCONTAINER --extra-ldflags=WindowsApp.lib")
|
|
|
|
endif()
|
2017-03-02 23:29:00 +08:00
|
|
|
endif()
|
|
|
|
|
2019-08-07 04:25:50 +08:00
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
2019-09-24 04:46:16 +08:00
|
|
|
set(OPTIONS "${OPTIONS} --extra-cflags=-DHAVE_UNISTD_H=0")
|
2019-04-05 13:32:10 +08:00
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "dynamic")
|
2019-09-24 04:46:16 +08:00
|
|
|
set(OPTIONS_DEBUG "${OPTIONS_DEBUG} --extra-cflags=-MDd --extra-cxxflags=-MDd")
|
2019-04-05 13:32:10 +08:00
|
|
|
set(OPTIONS_RELEASE "${OPTIONS_RELEASE} --extra-cflags=-MD --extra-cxxflags=-MD")
|
|
|
|
else()
|
2019-09-24 04:46:16 +08:00
|
|
|
set(OPTIONS_DEBUG "${OPTIONS_DEBUG} --extra-cflags=-MTd --extra-cxxflags=-MTd")
|
2019-04-05 13:32:10 +08:00
|
|
|
set(OPTIONS_RELEASE "${OPTIONS_RELEASE} --extra-cflags=-MT --extra-cxxflags=-MT")
|
|
|
|
endif()
|
2017-03-02 23:29:00 +08:00
|
|
|
endif()
|
|
|
|
|
2019-06-01 07:25:56 +08:00
|
|
|
set(ENV_LIB_PATH "$ENV{${LIB_PATH_VAR}}")
|
2020-03-25 04:00:09 +08:00
|
|
|
set(ENV{PKG_CONFIG_PATH} "${CURRENT_INSTALLED_DIR}/lib/pkgconfig")
|
2017-03-02 23:29:00 +08:00
|
|
|
|
2019-09-24 04:46:16 +08:00
|
|
|
message(STATUS "Building Options: ${OPTIONS}")
|
|
|
|
|
2019-12-22 06:04:38 +08:00
|
|
|
# Release build
|
2019-08-07 04:25:50 +08:00
|
|
|
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL release)
|
2019-12-22 06:04:38 +08:00
|
|
|
message(STATUS "Building Release Options: ${OPTIONS_RELEASE}")
|
2019-08-07 04:25:50 +08:00
|
|
|
set(ENV{${LIB_PATH_VAR}} "${CURRENT_INSTALLED_DIR}/lib${SEP}${ENV_LIB_PATH}")
|
2019-10-14 19:03:01 +08:00
|
|
|
set(ENV{CFLAGS} "${VCPKG_C_FLAGS} ${VCPKG_C_FLAGS_RELEASE}")
|
|
|
|
set(ENV{LDFLAGS} "${VCPKG_LINKER_FLAGS}")
|
2019-08-07 04:25:50 +08:00
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Release")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
|
|
|
vcpkg_execute_required_process(
|
|
|
|
COMMAND ${BASH} --noprofile --norc "${BUILD_SCRIPT}"
|
|
|
|
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel" # BUILD DIR
|
|
|
|
"${SOURCE_PATH}" # SOURCE DIR
|
|
|
|
"${CURRENT_PACKAGES_DIR}" # PACKAGE DIR
|
|
|
|
"${OPTIONS} ${OPTIONS_RELEASE}"
|
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-rel
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Debug build
|
|
|
|
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL debug)
|
|
|
|
message(STATUS "Building Debug Options: ${OPTIONS_DEBUG}")
|
|
|
|
set(ENV{${LIB_PATH_VAR}} "${CURRENT_INSTALLED_DIR}/debug/lib${SEP}${ENV_LIB_PATH}")
|
2019-10-14 19:03:01 +08:00
|
|
|
set(ENV{CFLAGS} "${VCPKG_C_FLAGS} ${VCPKG_C_FLAGS_DEBUG}")
|
|
|
|
set(ENV{LDFLAGS} "${VCPKG_LINKER_FLAGS}")
|
2019-08-07 04:25:50 +08:00
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Debug")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
|
|
|
vcpkg_execute_required_process(
|
|
|
|
COMMAND ${BASH} --noprofile --norc "${BUILD_SCRIPT}"
|
|
|
|
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg" # BUILD DIR
|
|
|
|
"${SOURCE_PATH}" # SOURCE DIR
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug" # PACKAGE DIR
|
|
|
|
"${OPTIONS} ${OPTIONS_DEBUG}"
|
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-dbg
|
|
|
|
)
|
|
|
|
endif()
|
2017-03-02 23:29:00 +08:00
|
|
|
|
|
|
|
file(GLOB DEF_FILES ${CURRENT_PACKAGES_DIR}/lib/*.def ${CURRENT_PACKAGES_DIR}/debug/lib/*.def)
|
|
|
|
|
|
|
|
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm")
|
|
|
|
set(LIB_MACHINE_ARG /machine:ARM)
|
2019-06-07 07:04:28 +08:00
|
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
|
|
set(LIB_MACHINE_ARG /machine:ARM64)
|
2017-03-02 23:29:00 +08:00
|
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
|
|
|
|
set(LIB_MACHINE_ARG /machine:x86)
|
|
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
|
|
set(LIB_MACHINE_ARG /machine:x64)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unsupported target architecture")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(DEF_FILE ${DEF_FILES})
|
|
|
|
get_filename_component(DEF_FILE_DIR "${DEF_FILE}" DIRECTORY)
|
|
|
|
get_filename_component(DEF_FILE_NAME "${DEF_FILE}" NAME)
|
2020-03-28 10:40:10 +08:00
|
|
|
string(REGEX REPLACE "-[0-9]*\\.def" "${VCPKG_TARGET_STATIC_LIBRARY_SUFFIX}" OUT_FILE_NAME "${DEF_FILE_NAME}")
|
2017-03-02 23:29:00 +08:00
|
|
|
file(TO_NATIVE_PATH "${DEF_FILE}" DEF_FILE_NATIVE)
|
|
|
|
file(TO_NATIVE_PATH "${DEF_FILE_DIR}/${OUT_FILE_NAME}" OUT_FILE_NATIVE)
|
|
|
|
message(STATUS "Generating ${OUT_FILE_NATIVE}")
|
|
|
|
vcpkg_execute_required_process(
|
|
|
|
COMMAND lib.exe /def:${DEF_FILE_NATIVE} /out:${OUT_FILE_NATIVE} ${LIB_MACHINE_ARG}
|
|
|
|
WORKING_DIRECTORY ${CURRENT_PACKAGES_DIR}
|
|
|
|
LOGNAME libconvert-${TARGET_TRIPLET}
|
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
|
2020-03-28 10:40:10 +08:00
|
|
|
# Handle tools
|
|
|
|
if (VCPKG_TARGET_IS_WINDOWS)
|
|
|
|
file(GLOB EXP_FILES ${CURRENT_PACKAGES_DIR}/lib/*.exp ${CURRENT_PACKAGES_DIR}/debug/lib/*.exp)
|
|
|
|
file(GLOB LIB_FILES ${CURRENT_PACKAGES_DIR}/bin/*${VCPKG_TARGET_STATIC_LIBRARY_SUFFIX} ${CURRENT_PACKAGES_DIR}/debug/bin/*${VCPKG_TARGET_STATIC_LIBRARY_SUFFIX})
|
|
|
|
file(GLOB EXE_FILES_REL ${CURRENT_PACKAGES_DIR}/bin/*${VCPKG_TARGET_EXECUTABLE_SUFFIX})
|
|
|
|
file(GLOB EXE_FILES_DBG ${CURRENT_PACKAGES_DIR}/debug/bin/*${VCPKG_TARGET_EXECUTABLE_SUFFIX})
|
|
|
|
set(FILES_TO_REMOVE ${EXP_FILES} ${LIB_FILES} ${DEF_FILES} ${EXE_FILES_REL} ${EXE_FILES_DBG})
|
|
|
|
|
|
|
|
if(FILES_TO_REMOVE)
|
|
|
|
if (EXE_FILES_REL)
|
2020-07-08 04:58:29 +08:00
|
|
|
file(INSTALL ${EXE_FILES_REL} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
2020-03-28 10:40:10 +08:00
|
|
|
endif()
|
|
|
|
if (EXE_FILES_DBG)
|
2020-07-08 04:58:29 +08:00
|
|
|
file(INSTALL ${EXE_FILES_DBG} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/tools/${PORT})
|
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/debug/tools/${PORT})
|
2020-03-28 10:40:10 +08:00
|
|
|
endif()
|
|
|
|
file(REMOVE ${FILES_TO_REMOVE})
|
|
|
|
endif()
|
2017-03-03 00:26:39 +08:00
|
|
|
endif()
|
2020-03-28 10:40:10 +08:00
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
|
2020-03-19 15:28:10 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
|
|
endif()
|
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
# Handle copyright
|
2019-12-24 07:37:41 +08:00
|
|
|
file(STRINGS ${CURRENT_BUILDTREES_DIR}/build-${TARGET_TRIPLET}-rel-out.log LICENSE_STRING REGEX "License: .*" LIMIT_COUNT 1)
|
|
|
|
if(${LICENSE_STRING} STREQUAL "License: LGPL version 2.1 or later")
|
|
|
|
set(LICENSE_FILE "COPYING.LGPLv2.1")
|
|
|
|
elseif(${LICENSE_STRING} STREQUAL "License: LGPL version 3 or later")
|
|
|
|
set(LICENSE_FILE "COPYING.LGPLv3")
|
|
|
|
elseif(${LICENSE_STRING} STREQUAL "License: GPL version 2 or later")
|
|
|
|
set(LICENSE_FILE "COPYING.GPLv2")
|
|
|
|
elseif(${LICENSE_STRING} STREQUAL "License: GPL version 3 or later")
|
|
|
|
set(LICENSE_FILE "COPYING.GPLv3")
|
|
|
|
elseif(${LICENSE_STRING} STREQUAL "License: nonfree and unredistributable")
|
|
|
|
set(LICENSE_FILE "COPYING.NONFREE")
|
|
|
|
file(WRITE ${SOURCE_PATH}/${LICENSE_FILE} ${LICENSE_STRING})
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Failed to identify license (${LICENSE_STRING})")
|
|
|
|
endif()
|
2018-02-22 08:39:48 +08:00
|
|
|
|
2019-09-24 04:46:16 +08:00
|
|
|
configure_file(${CMAKE_CURRENT_LIST_DIR}/FindFFMPEG.cmake.in ${CURRENT_PACKAGES_DIR}/share/${PORT}/FindFFMPEG.cmake @ONLY)
|
[many ports] improvements for linux/wsl (#6730)
* [many ports] improve compatibility with WSL and mixed case filesystems
* [treehopper] express dependency on libusb, which was not working on non-win32 platforms and is still broken there
* [libharu] add compatibility with non-win32 platforms
* [geogram] fix openblas on linux
[clapack] better integration with linux environment
[visit-struct] put cmake config file in the expected folder
[geogram] remove trailing underscore to enable compatibility with OpenBLAS
* [openblas] playing with underscore, without success
* [openblas/lapack] fix library integration
* [clapack] improve target handling in cmake module
* [openblas] promote self-generated config to default cmake module, otherwise internal ones thinks wrongly that openblas can also solve lapack libs
* [clapack,openblas] improve libraries integration
* [many ports] fix cmake unnecessary target paths, wrong config paths, empty default dependencies, unnecessary [core] tags
* [suitesparse] improve integration with new lapack/openblas mechanism
* [suitesparse] add no underscore postfix also for linux
* [ceres] fix integration with newer openblas/lapack configs
* [aws-c-event-stream] fix regression
* [systemc] fix regression
* [libwebp,geogram] trigger rebuild
* [libwebp,pthread4w] fix regressions
* [glbinding] fix cmake module installation
* [globjects] disentangle unnecessary dependency from qt5
* [jasper] remove broken and unnecessary patches
* [libwebp] fix regression
* [many ports] avoid using BUILD_SHARED_LIBS which is uninitialized in port files
* [clapack] correctly find dlls
* [clapack] use a generic blas as dependency
* [fizz,g2o] restore expected version
* fix mistake
* [many ports] remove WIN32, APPLE and UNIX (again, they keep creeping in) from ports since they are broken and usually break non-win32 ports
* [libressl,openssl] do not try to build one if the other is already installed
* [itk] update ref and patch to avoid regression
* [libressl,openssl] implement full strategy to fix CI
* [libwebp] disable components that are broken on macOS
* [ogre] enable macOS build
* [freeimage,jxrlib,ogre,openexr,protobuf] port patches from #5169
* [ogre] add missing install command
* [ffmpeg] enable wrapper for cmake module
* [ffmpeg] add avresample module finder
* [ffmpeg] improve module detection and exported symbols
* [ffmpeg] add variables to cache
* [thrift] remove unnecessary build option
* [allegro5] fix shared/static inversion
* [protobuf] cleanup
* [libressl] cleanup
* [moos-core] cleanup
* commented features must not be separated from other features, otherwise vcpkg complains
* [itk] fix regression
* [shogun,itk] fix regressions
* [ogre] fix regression
* [opusfile] add compatibility with non-win32
* [itk] fix regression
* [sndfile,libsndfile] remove duplicate, redirect sndfile to libsndfile
* add missing dependencies
* [ismrmrd] fix regression
* [ffmpeg] trigger rebuild
* [clapack,openblas,libogg] fix regressions on macOS
* [libtins] fix regression
* force rebuild windows regressions, unable to reproduce locally
* [mosquitto] enable non-win32 builds
* [json-dto] force rebuild, unable to reproduce regression locally
* [many ports] uniform naming and path length requests
* fix regression
* fix regression
* [ffmpeg] fixes for downstream projects
* clean up - thanks to reviewers
* trigger rebuild of regressions on macOS
* trigger rebuild of regressions on macOS - part2
* Add core back
* Use VCPKG_CONCURRENCY
* Add core back to suitesparse
* Add core back to curl
* Add core back to magnum
* Add core back to magnum
* Add core back to magnum
* Add core back to cgal
2019-06-21 10:11:54 +08:00
|
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
2020-03-28 10:40:10 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/${LICENSE_FILE} DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|