From 5a0e53cd524aa2e1d15bb5ed27c6a59dc1849459 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Wed, 27 May 2026 03:19:34 -0500 Subject: [PATCH] Overhaul cmake configuration, add console api, fix http code that caused issues with cgi-bin --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c89f49..f7dbb7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,7 @@ include(cmake/version.cmake) project(TessesFramework VERSION ${TESSESFRAMEWORK_MAJOR_VERSION}.${TESSESFRAMEWORK_MINOR_VERSION}.${TESSESFRAMEWORK_PATCH_VERSION}) set(CMAKE_CXX_STANDARD 17) +include(GNUInstallDirs) include(CheckLibraryExists) include(FetchContent) include(cmake/sources.cmake)