Skip to content

Commit 5242fcf

Browse files
bghgaryCopilot
andcommitted
Make arcana a PUBLIC dependency of AppRuntime
AppRuntime.h includes arcana/threading/cancellation.h and arcana/threading/dispatcher.h in its public header. Consumers need arcana's include directories to compile. Changed from PRIVATE to PUBLIC. This was broken by #149 which moved arcana includes into the public header when merging WorkQueue into AppRuntime. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 901208a commit 5242fcf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Core/AppRuntime/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ target_include_directories(AppRuntime
1919
INTERFACE "Include")
2020

2121
target_link_libraries(AppRuntime
22-
PRIVATE arcana
22+
PUBLIC arcana
2323
PUBLIC JsRuntime)
2424

2525
if(NAPI_JAVASCRIPT_ENGINE STREQUAL "V8" AND JSRUNTIMEHOST_CORE_APPRUNTIME_V8_INSPECTOR)

0 commit comments

Comments
 (0)