aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-01 10:55:23 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-01 10:55:23 -0700
commita8e21e0ac702fc7bcdcaf144f384cbce8aae03d0 (patch)
tree7b6a4ab19e749b73eefa620875e6fc5321bd1dc3 /CMakeLists.txt
parent861bc73b34765829e5fc9e68bbb0b18ec44e0903 (diff)
Needed to ad glfw to cmake
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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})