From a8e21e0ac702fc7bcdcaf144f384cbce8aae03d0 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Fri, 1 Dec 2023 10:55:23 -0700 Subject: Needed to ad glfw to cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 16d2099..cb03d1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ file(GLOB SRC_FILES src/*.c src/entities/*.c src/levels/*.c) add_executable(${PROJECT_NAME} ${SRC_FILES}) target_include_directories(${PROJECT_NAME} PUBLIC include src) -target_link_libraries(${PROJECT_NAME} raylib m) +target_link_libraries(${PROJECT_NAME} raylib m glfw) file(COPY assets/assets.rres DESTINATION ${CMAKE_BINARY_DIR}) -- cgit v1.2.3