From 61a1c59472e71a4c4f63afe8cd79582973b9150b Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 2 Jun 2018 18:47:19 +0200 Subject: [PATCH] Corrected possible issue with CMake for GLFW --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $) + list(APPEND raylib_sources $) endif() include(utils)