summaryrefslogtreecommitdiffhomepage
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorRay <[email protected]>2018-06-02 18:47:19 +0200
committerRay <[email protected]>2018-06-02 18:47:19 +0200
commit61a1c59472e71a4c4f63afe8cd79582973b9150b (patch)
treebb5fc91b45bc0ebcaec56c66c66f67bade7c6dc2 /src/CMakeLists.txt
parent9688c677de8b56a78175c87f8a18af7c6bcc9d1f (diff)
downloadraylib-61a1c59472e71a4c4f63afe8cd79582973b9150b.tar.gz
raylib-61a1c59472e71a4c4f63afe8cd79582973b9150b.zip
Corrected possible issue with CMake for GLFW
Diffstat (limited to 'src/CMakeLists.txt')
-rwxr-xr-xsrc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 7e94d97d..d7454493 100755
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -31,7 +31,7 @@ if(NOT glfw3_FOUND AND "${PLATFORM}" MATCHES "Desktop")
add_subdirectory(external/glfw)
include_directories(external/glfw/include)
- list(APPEND raylib_sources $<TARGET_OBJECTS:glfw_objlib>)
+ list(APPEND raylib_sources $<TARGET_OBJECTS:glfw>)
endif()
include(utils)