From e25e1bfab3a50cb47902affe335c8e248e5867d3 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Sun, 14 Jul 2024 20:48:59 -0400 Subject: [PATCH] include publically --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e50bade..9c0892a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.0.77) +project(blt-gp VERSION 0.0.78) include(CTest) @@ -24,6 +24,8 @@ add_library(blt-gp ${PROJECT_BUILD_FILES}) target_compile_options(blt-gp PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment) target_link_options(blt-gp PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment) +target_include_directories(blt-gp PUBLIC include/) + target_link_libraries(blt-gp PRIVATE BLT Threads::Threads) target_compile_definitions(blt-gp PRIVATE BLT_DEBUG_LEVEL=${DEBUG_LEVEL})