merge changes

This commit is contained in:
Hartmut Seichter 2025-06-02 21:39:32 +02:00
commit d9edd85e60
3 changed files with 6 additions and 7 deletions

View file

@ -6,7 +6,6 @@
#include <vector> #include <vector>
#include <pw/core/image.hpp> #include <pw/core/image.hpp>
#include <pw/core/size.hpp>
namespace pw { namespace pw {

View file

@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.8) cmake_minimum_required(VERSION 3.20)
project(glad) project(glad)
add_library(glad STATIC src/glad.c) add_library(glad STATIC src/glad.c)
target_include_directories( target_include_directories(
glad glad
PUBLIC PUBLIC
include include
) )

View file

@ -2,7 +2,7 @@ include(FetchContent)
FetchContent_Declare(snitch FetchContent_Declare(snitch
GIT_REPOSITORY https://github.com/snitch-org/snitch.git 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) FetchContent_MakeAvailable(snitch)