From cad39a6d96afdbba731ce067eb04bf6479d4a820 Mon Sep 17 00:00:00 2001 From: "arthur.jamet" Date: Fri, 21 May 2021 10:23:10 +0200 Subject: [PATCH] fix cmakelist --- lib/Ray/.gitignore | 3 ++- lib/Ray/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Ray/.gitignore b/lib/Ray/.gitignore index d1638636..c4ec047b 100644 --- a/lib/Ray/.gitignore +++ b/lib/Ray/.gitignore @@ -1 +1,2 @@ -build/ \ No newline at end of file +build/ +docs/ \ No newline at end of file diff --git a/lib/Ray/CMakeLists.txt b/lib/Ray/CMakeLists.txt index a039498b..82504a17 100644 --- a/lib/Ray/CMakeLists.txt +++ b/lib/Ray/CMakeLists.txt @@ -87,5 +87,6 @@ set(SRC sources/Window.cpp ) +find_package(raylib REQUIRED) add_library(${LIB_NAME} STATIC ${SRC} ${HEADERS}) target_link_libraries(${LIB_NAME} raylib)