2018-11-07 09:50:54 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO glfw/glfw
|
2022-04-13 01:14:24 +08:00
|
|
|
REF 45ce5ddd197d5c58f50fdd3296a5131c894e5527 #v3.3.7
|
|
|
|
SHA512 0802b499cb56f5c4f575304279aafe7d812443fcf3dbfa75178cfba7a3693fb88731ae5dd29c6937598ba977de156d92af1ea99929b70ff72ed8429693f301c7
|
2018-11-07 09:50:54 +08:00
|
|
|
HEAD_REF master
|
2016-09-19 11:50:08 +08:00
|
|
|
)
|
|
|
|
|
2020-01-15 02:12:05 +08:00
|
|
|
if(VCPKG_TARGET_IS_LINUX)
|
2018-11-07 09:50:54 +08:00
|
|
|
message(
|
|
|
|
"GLFW3 currently requires the following libraries from the system package manager:
|
|
|
|
xinerama
|
|
|
|
xcursor
|
2019-08-26 11:31:55 +08:00
|
|
|
xorg
|
|
|
|
libglu1-mesa
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2019-08-26 11:31:55 +08:00
|
|
|
These can be installed on Ubuntu systems via sudo apt install libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev")
|
2018-11-07 09:50:54 +08:00
|
|
|
endif()
|
2017-03-31 12:52:18 +08:00
|
|
|
|
2021-11-16 06:33:27 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2016-09-19 11:50:08 +08:00
|
|
|
OPTIONS
|
|
|
|
-DGLFW_BUILD_EXAMPLES=OFF
|
|
|
|
-DGLFW_BUILD_TESTS=OFF
|
|
|
|
-DGLFW_BUILD_DOCS=OFF
|
|
|
|
)
|
|
|
|
|
2021-11-16 06:33:27 +08:00
|
|
|
vcpkg_cmake_install()
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2021-11-16 06:33:27 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/glfw3)
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2021-02-11 15:55:18 +08:00
|
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
|
2021-11-16 06:33:27 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2021-11-16 06:33:27 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2018-11-07 09:50:54 +08:00
|
|
|
vcpkg_copy_pdbs()
|