From 0a79fe2787dce76ee23a47b31f338c94957491fc Mon Sep 17 00:00:00 2001 From: Ludovic 'Archivist' Lagouardette Date: Wed, 12 Jul 2023 17:44:58 +0200 Subject: [PATCH] Small dep management fix --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4162a35..d07dadd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,7 @@ include(Catch) add_library(UserScript STATIC src/interpreter.cpp src/lex_parse.cpp) +target_include_directories(UserScript PUBLIC include) add_executable(ushell script_exe/main.cpp) target_link_libraries(ushell PUBLIC UserScript)