diff --git a/Working-with-CMake.md b/Working-with-CMake.md index 9c019cc..c226d7c 100644 --- a/Working-with-CMake.md +++ b/Working-with-CMake.md @@ -10,7 +10,7 @@ set(CMAKE_C_STANDARD 11) add_executable(my_project main.c) -target_link_libraries(my_project main raylib) +target_link_libraries(my_project raylib) ``` To build, use these commands: ```cmake