vcpkg/ports/libopusenc/portfile.cmake

27 lines
983 B
CMake
Raw Normal View History

2017-07-21 22:45:25 +08:00
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
message(FATAL_ERROR "UWP builds not supported")
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO xiph/libopusenc
REF v0.2.1
SHA512 9681421a967b93770796dd3503c00e1418de86438d2bfe77011dc68f6db5d666508d33c0df7308db3b7ea18f5e1b14a3115fd63837987e16347ec801c3771d26
2017-07-21 22:45:25 +08:00
HEAD_REF master)
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
2017-07-21 22:45:25 +08:00
vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}"
2017-07-21 22:45:25 +08:00
OPTIONS_DEBUG
-DOPUSENC_SKIP_HEADERS=ON)
vcpkg_cmake_install()
2017-07-21 22:45:25 +08:00
vcpkg_copy_pdbs()
# make includes work with MSBuild integration
file(READ "${CURRENT_PACKAGES_DIR}/include/opus/opusenc.h" OPUSENC_H)
2017-07-21 22:45:25 +08:00
string(REPLACE "#include <opus.h>" "#include \"opus.h\"" OPUSENC_H "${OPUSENC_H}")
file(WRITE "${CURRENT_PACKAGES_DIR}/include/opus/opusenc.h" "${OPUSENC_H}")
2017-07-21 22:45:25 +08:00
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)