2017-03-02 23:29:00 +08:00
|
|
|
include(vcpkg_common_functions)
|
2019-03-30 14:23:18 +08:00
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
vcpkg_download_distfile(ARCHIVE
|
2018-11-27 17:04:57 +08:00
|
|
|
URLS "http://ffmpeg.org/releases/ffmpeg-4.1.tar.bz2"
|
|
|
|
FILENAME "ffmpeg-4.1.tar.bz2"
|
|
|
|
SHA512 ccf6d07268dc47e08ca619eb182a003face2a8ee73ec1a28157330dd7de1df88939def1fc1c7e6b6ac7b59752cdad84657d589b2fafb73e14e5ef03fb6e33417
|
2017-03-02 23:29:00 +08:00
|
|
|
)
|
2018-03-24 08:02:23 +08:00
|
|
|
|
2019-03-30 14:23:18 +08:00
|
|
|
vcpkg_extract_source_archive_ex(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
ARCHIVE ${ARCHIVE}
|
|
|
|
PATCHES
|
|
|
|
create-lib-libraries.patch
|
|
|
|
detect-openssl.patch
|
|
|
|
configure_opencv.patch
|
|
|
|
fix_windowsinclude-in-ffmpegexe-1.patch
|
|
|
|
fix_windowsinclude-in-ffmpegexe-2.patch
|
2019-06-11 00:07:18 +08:00
|
|
|
fix_libvpx_windows_linking.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-06-04 07:42:09 +08:00
|
|
|
if(NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
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()
|
|
|
|
|
|
|
|
if (WIN32)
|
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()
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
if("lzma" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-lzma")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-lzma")
|
|
|
|
endif()
|
|
|
|
|
2019-05-23 19:42:10 +08:00
|
|
|
if("bzip2" IN_LIST FEATURES)
|
|
|
|
set(OPTIONS "${OPTIONS} --enable-bzlib")
|
|
|
|
else()
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-bzlib")
|
|
|
|
endif()
|
2018-03-12 21:13:14 +08:00
|
|
|
|
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()
|
|
|
|
|
2017-06-18 02:30:03 +08:00
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
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()
|
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
set(OPTIONS_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
|
|
|
set(OPTIONS "${OPTIONS} --extra-cflags=-DHAVE_UNISTD_H=0")
|
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
|
|
set(OPTIONS "${OPTIONS} --disable-static --enable-shared")
|
2017-06-20 16:08:04 +08:00
|
|
|
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
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()
|
|
|
|
|
2018-03-12 21:13:14 +08:00
|
|
|
message(STATUS "Building Options: ${OPTIONS}")
|
|
|
|
|
[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
|
|
|
if(NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
2019-04-05 13:32:10 +08:00
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "dynamic")
|
|
|
|
set(OPTIONS_DEBUG "${OPTIONS_DEBUG} --extra-cflags=-MDd --extra-cxxflags=-MDd")
|
|
|
|
set(OPTIONS_RELEASE "${OPTIONS_RELEASE} --extra-cflags=-MD --extra-cxxflags=-MD")
|
|
|
|
else()
|
|
|
|
set(OPTIONS_DEBUG "${OPTIONS_DEBUG} --extra-cflags=-MTd --extra-cxxflags=-MTd")
|
|
|
|
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}}")
|
|
|
|
set(ENV{${LIB_PATH_VAR}} "${CURRENT_INSTALLED_DIR}/lib${SEP}${ENV_LIB_PATH}")
|
2019-05-23 19:42:10 +08:00
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Release")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
|
|
|
vcpkg_execute_required_process(
|
2019-04-05 13:32:10 +08:00
|
|
|
COMMAND ${BASH} --noprofile --norc "${BUILD_SCRIPT}"
|
2017-03-02 23:29:00 +08:00
|
|
|
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel" # BUILD DIR
|
|
|
|
"${SOURCE_PATH}" # SOURCE DIR
|
|
|
|
"${CURRENT_PACKAGES_DIR}" # PACKAGE DIR
|
2017-06-20 16:08:04 +08:00
|
|
|
"${OPTIONS} ${OPTIONS_RELEASE}"
|
2017-03-02 23:29:00 +08:00
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-rel
|
|
|
|
)
|
|
|
|
|
2019-06-01 07:25:56 +08:00
|
|
|
set(ENV{${LIB_PATH_VAR}} "${CURRENT_INSTALLED_DIR}/debug/lib${SEP}${ENV_LIB_PATH}")
|
|
|
|
|
2017-03-02 23:29:00 +08:00
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Debug")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
|
|
|
vcpkg_execute_required_process(
|
2019-04-05 13:32:10 +08:00
|
|
|
COMMAND ${BASH} --noprofile --norc "${BUILD_SCRIPT}"
|
2017-03-02 23:29:00 +08:00
|
|
|
"${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
|
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
string(REGEX REPLACE "-[0-9]*\\.def" ".lib" OUT_FILE_NAME "${DEF_FILE_NAME}")
|
|
|
|
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()
|
|
|
|
|
|
|
|
file(GLOB EXP_FILES ${CURRENT_PACKAGES_DIR}/lib/*.exp ${CURRENT_PACKAGES_DIR}/debug/lib/*.exp)
|
|
|
|
file(GLOB LIB_FILES ${CURRENT_PACKAGES_DIR}/bin/*.lib ${CURRENT_PACKAGES_DIR}/debug/bin/*.lib)
|
|
|
|
file(GLOB EXE_FILES ${CURRENT_PACKAGES_DIR}/bin/*.exe ${CURRENT_PACKAGES_DIR}/debug/bin/*.exe)
|
2017-03-03 00:26:39 +08:00
|
|
|
set(FILES_TO_REMOVE ${EXP_FILES} ${LIB_FILES} ${DEF_FILES} ${EXE_FILES})
|
|
|
|
list(LENGTH FILES_TO_REMOVE FILES_TO_REMOVE_LEN)
|
|
|
|
if(FILES_TO_REMOVE_LEN GREATER 0)
|
|
|
|
file(REMOVE ${FILES_TO_REMOVE})
|
|
|
|
endif()
|
2017-03-02 23:29:00 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
# Handle copyright
|
|
|
|
# TODO: Examine build log and confirm that this license matches the build output
|
|
|
|
file(COPY ${SOURCE_PATH}/COPYING.LGPLv2.1 DESTINATION ${CURRENT_PACKAGES_DIR}/share/ffmpeg)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/ffmpeg/COPYING.LGPLv2.1 ${CURRENT_PACKAGES_DIR}/share/ffmpeg/copyright)
|
2018-02-22 08:39:48 +08:00
|
|
|
|
|
|
|
# Used by OpenCV
|
|
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/FindFFMPEG.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/ffmpeg)
|