mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 13:31:27 +08:00
36fcce0bbf
* [angle] update for gcc 10 compatibility * [angle] macos fix * [angle] Fix UWP builds Co-authored-by: Igor Kostenko <ikostenko@perforce.com>
77 lines
2.9 KiB
CMake
77 lines
2.9 KiB
CMake
if (VCPKG_TARGET_IS_LINUX)
|
|
message(WARNING "Building with a gcc version less than 6.1 is not supported.")
|
|
message(WARNING "${PORT} currently requires the following libraries from the system package manager:\n libx11-dev\n libmesa-dev\n libxi-dev\n libxext-dev\n\nThese can be installed on Ubuntu systems via apt-get install libx11-dev libmesa-dev libxi-dev libxext-dev.")
|
|
endif()
|
|
|
|
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
|
|
set(ANGLE_CPU_BITNESS ANGLE_IS_32_BIT_CPU)
|
|
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
set(ANGLE_CPU_BITNESS ANGLE_IS_64_BIT_CPU)
|
|
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "arm")
|
|
set(ANGLE_CPU_BITNESS ANGLE_IS_32_BIT_CPU)
|
|
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
set(ANGLE_CPU_BITNESS ANGLE_IS_64_BIT_CPU)
|
|
else()
|
|
message(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}")
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO google/angle
|
|
REF d949154da428bb3e924e28a8eadfe2327631c8bb # chromium/4148
|
|
SHA512 3ef1c94fccfca592057652e0ad305e3025184675e2323a714428ec934048496fbd242b5e1298bb5e3b3058b53d54f6889e446cbd81af7bea2cc6d5e13c7356bd
|
|
# On update check headers against opengl-registry
|
|
PATCHES
|
|
001-fix-uwp.patch
|
|
002-fix-builder-error.patch
|
|
)
|
|
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/commit.h DESTINATION ${SOURCE_PATH})
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/commit.h DESTINATION ${SOURCE_PATH}/src/common)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=1
|
|
OPTIONS
|
|
-D${ANGLE_CPU_BITNESS}=1
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/unofficial-angle TARGET_PATH share/unofficial-angle)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
|
|
|
# File conflict with opengl-registry! Make sure headers are similar on Update!
|
|
# angle defines some additional entrypoints.
|
|
# opengl-registry probably needs an upstream update to account for those
|
|
# Due to that all angle headers get moved to include/angle.
|
|
# If you want to use those instead of the onces provided by opengl-registry make sure
|
|
# VCPKG_INSTALLED_DIR/include/angle is before VCPKG_INSTALLED_DIR/include
|
|
file(GLOB_RECURSE angle_includes "${CURRENT_PACKAGES_DIR}/include")
|
|
file(COPY ${angle_includes} DESTINATION "${CURRENT_PACKAGES_DIR}/include/angle")
|
|
|
|
set(_double_files
|
|
include/GLES/egl.h
|
|
include/GLES/gl.h
|
|
include/GLES/glext.h
|
|
include/GLES/glplatform.h
|
|
include/GLES2/gl2.h
|
|
include/GLES2/gl2ext.h
|
|
include/GLES2/gl2platform.h
|
|
include/GLES3/gl3.h
|
|
include/GLES3/gl31.h
|
|
include/GLES3/gl32.h
|
|
include/GLES3/gl3platform.h)
|
|
foreach(_file ${_double_files})
|
|
if(EXISTS "${CURRENT_PACKAGES_DIR}/${_file}")
|
|
file(REMOVE "${CURRENT_PACKAGES_DIR}/${_file}")
|
|
endif()
|
|
endforeach()
|
|
|
|
|