Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLFW3] Add message for installing pkg-config #27297

Merged
merged 1 commit into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion ports/glfw3/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,19 @@ if(VCPKG_TARGET_IS_LINUX)
xcursor
xorg
libglu1-mesa
pkg-config

These can be installed on Ubuntu systems via sudo apt install libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev")
These can be installed on Ubuntu systems via sudo apt install libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev pkg-config")
else(VCPKG_TARGET_IS_OSX)
message(
"GLFW3 currently requires the following libraries from the system package manager:
xinerama
xcursor
xorg
libglu1-mesa
pkg-config

These can be installed via brew install libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev pkg-config")
endif()

vcpkg_cmake_configure(
Expand Down
1 change: 1 addition & 0 deletions ports/glfw3/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "glfw3",
"version-semver": "3.3.8",
"port-version": 1,
"description": "GLFW is a free, Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development. It provides a simple, platform-independent API for creating windows, contexts and surfaces, reading input, handling events, etc.",
"homepage": "https://github.com/glfw/glfw",
"license": "Zlib",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -2634,7 +2634,7 @@
},
"glfw3": {
"baseline": "3.3.8",
"port-version": 0
"port-version": 1
},
"gli": {
"baseline": "2021-07-06",
Expand Down
5 changes: 5 additions & 0 deletions versions/g-/glfw3.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "7e79d23866b44b1f40d766b690baa6f1d9cca7fd",
"version-semver": "3.3.8",
"port-version": 1
},
{
"git-tree": "a2a1ebc7845c0e8e6c7d46c0b940f4457cf460d8",
"version-semver": "3.3.8",
Expand Down