diff options
| author | Ahmad Fatoum <ahmad@a3f.at> | 2019-05-04 22:19:09 +0200 |
|---|---|---|
| committer | Ahmad Fatoum <ahmad@a3f.at> | 2019-05-04 22:28:21 +0200 |
| commit | 36d8a648f0cbc9bff9893b4e7612846097e76397 (patch) | |
| tree | 304980f0c1a4fdca4ce0a90df084a3a76f746a08 /src/external | |
| parent | 2cda760312eb9219f4e3d773209289696fec5f71 (diff) | |
| download | raylib-36d8a648f0cbc9bff9893b4e7612846097e76397.tar.gz raylib-36d8a648f0cbc9bff9893b4e7612846097e76397.zip | |
external: glfw: reinstate export of GLFW_PKG_{DEPS,LIBS}
We were doing this before, but it was deleted during the
last GLFW update. Readd it to fix the associated macOS CI failure.
Fixes: cd934c9f6 ("Update GLFW to 3.3.1")
Diffstat (limited to 'src/external')
| -rw-r--r-- | src/external/glfw/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/external/glfw/CMakeLists.txt b/src/external/glfw/CMakeLists.txt index 061618ee..a9ed8554 100644 --- a/src/external/glfw/CMakeLists.txt +++ b/src/external/glfw/CMakeLists.txt @@ -303,10 +303,12 @@ endif() # Export GLFW library dependencies #-------------------------------------------------------------------- foreach(arg ${glfw_PKG_DEPS}) - set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} ${arg}") + set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} ${arg}" CACHE INTERNAL + "GLFW pkg-config Requires.private") endforeach() foreach(arg ${glfw_PKG_LIBS}) - set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}") + set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}" CACHE INTERNAL + "GLFW pkg-config Libs.private") endforeach() #-------------------------------------------------------------------- |
