From 38bb29ecc0acd49eacb2e873321f4ea4992fc069 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sun, 19 Apr 2026 23:39:15 -0500 Subject: [PATCH] Change html to dark mode by default and stat in vfs --- CMakeLists.txt | 2 ++ src/Filesystem/LocalFS.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21bb950..8d5040c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -373,4 +373,6 @@ set(CPACK_PACKAGE_VERSION_MINOR "${TessesFramework_VERSION_MINOR}") set(CPACK_DEBIAN_PACKAGE_DEPENDS "libmbedtls-dev (>= 2.28.8)") include(CPack) +if(TESSESFRAMEWORK_INSTALL_DEVELOPMENT) add_subdirectory(pkgconfig) +endif() diff --git a/src/Filesystem/LocalFS.cpp b/src/Filesystem/LocalFS.cpp index 1270913..54fa695 100644 --- a/src/Filesystem/LocalFS.cpp +++ b/src/Filesystem/LocalFS.cpp @@ -12,6 +12,7 @@ #else #include #include +#include #endif #include "TessesFramework/Threading/Thread.hpp"