diff options
| author | Ray <[email protected]> | 2018-07-03 22:09:07 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-07-03 22:09:07 +0200 |
| commit | 91586fd7bc277266a5552859d0ef434194f38138 (patch) | |
| tree | 90dcf9d458c6c4ea9bea727b2e802a94930fb991 /src/external | |
| parent | 33c830353b2d9f9a0f33e87b27ba36b3c6da6076 (diff) | |
| parent | c3aeaf4a4941514653b9e3f3b7e1ea0965ef925f (diff) | |
| download | raylib-91586fd7bc277266a5552859d0ef434194f38138.tar.gz raylib-91586fd7bc277266a5552859d0ef434194f38138.zip | |
Merge pull request #566 from a3f/master
CMake: Reuse libraries found by glfw CMake config
Diffstat (limited to 'src/external')
| -rw-r--r-- | src/external/glfw/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/glfw/CMakeLists.txt b/src/external/glfw/CMakeLists.txt index 4f9dbcf7..0eb7e7ea 100644 --- a/src/external/glfw/CMakeLists.txt +++ b/src/external/glfw/CMakeLists.txt @@ -327,10 +327,10 @@ 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}" PARENT_SCOPE) endforeach() foreach(arg ${glfw_PKG_LIBS}) - set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}") + set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}" PARENT_SCOPE) endforeach() #-------------------------------------------------------------------- |
