diff --git a/CMakeLists.txt b/CMakeLists.txt index 9276871..6241522 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,9 @@ cmake_minimum_required(VERSION 3.10) # Minimum required CMake version +find_package(raylib REQUIRED) # Project name project(fmp) # Add executable add_executable(fmp src/Program.c) +target_link_libraries(fmp raylib)