summaryrefslogtreecommitdiffhomepage
path: root/utils.cmake
diff options
context:
space:
mode:
authorRay <[email protected]>2017-11-22 23:16:52 +0100
committerGitHub <[email protected]>2017-11-22 23:16:52 +0100
commit96e0f0e35ed96b7345acf6f3329b67518c11d946 (patch)
tree1d8b7e639a550c8006f2e7987c2d8f1e4eac83cb /utils.cmake
parentf70a0a996cc7a9a3cd1f5e3c7e3466b1d2528fd3 (diff)
parentb2acff66dec7bce30e9704aa9b13070f7c3ffac1 (diff)
downloadraylib-96e0f0e35ed96b7345acf6f3329b67518c11d946.tar.gz
raylib-96e0f0e35ed96b7345acf6f3329b67518c11d946.zip
Merge pull request #392 from a3f/develop
Fix macOS build of new rglfw.c approach
Diffstat (limited to 'utils.cmake')
-rw-r--r--utils.cmake7
1 files changed, 0 insertions, 7 deletions
diff --git a/utils.cmake b/utils.cmake
index c902f60e..f260fa5e 100644
--- a/utils.cmake
+++ b/utils.cmake
@@ -6,10 +6,6 @@ if(UNIX AND NOT APPLE)
set(LINUX TRUE)
endif()
-# Need GLFW 3.2.1
-find_package(glfw3 3.2.1 REQUIRED)
-
-
# Linking for OS X -framework options
# Will do nothing on other OSes
function(link_os_x_frameworks binary)
@@ -40,9 +36,6 @@ function(link_libraries_to_executable executable)
# TODO windows
endif()
- # Add in GLFW as a linking target
- target_link_libraries(${executable} glfw)
-
# And raylib
target_link_libraries(${executable} raylib)
endfunction()