From 6c8d48c40a758dd07748638a4f30d5251f865005 Mon Sep 17 00:00:00 2001 From: cuban-goats Date: Thu, 13 Aug 2026 14:06:51 +0200 Subject: [PATCH] fix: use STARLINGMONKEY_SRC variable in include_directories --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e21e105..add51cd5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ endif() include("${STARLINGMONKEY_SRC}/cmake/add_as_subproject.cmake") add_builtin(componentize::embedding SRC embedding/embedding.cpp) -include_directories("StarlingMonkey") +include_directories("${STARLINGMONKEY_SRC}") project(ComponentizeJS)