From cd9eafca84108c9eb4c42ef16e80dfe7422baf67 Mon Sep 17 00:00:00 2001 From: Hartmut Seichter Date: Thu, 22 May 2025 13:44:36 +0200 Subject: [PATCH] update cmake --- src/deps/glad/CMakeLists.txt | 10 +++++----- tests/CMakeLists.txt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/deps/glad/CMakeLists.txt b/src/deps/glad/CMakeLists.txt index 4dc5f6e..c10a525 100644 --- a/src/deps/glad/CMakeLists.txt +++ b/src/deps/glad/CMakeLists.txt @@ -1,11 +1,11 @@ -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.20) project(glad) add_library(glad STATIC src/glad.c) target_include_directories( - glad - PUBLIC - include - ) + glad + PUBLIC + include + ) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8eca65c..f6fa947 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,7 +2,7 @@ include(FetchContent) FetchContent_Declare(snitch GIT_REPOSITORY https://github.com/snitch-org/snitch.git - GIT_TAG v1.2.5) # update version number as needed + GIT_TAG v1.3.2) # update version number as needed FetchContent_MakeAvailable(snitch)