From d606fd373a74992ad9b98b61d556ee2a1cecda13 Mon Sep 17 00:00:00 2001 From: anutosh491 Date: Sat, 24 May 2025 17:09:25 +0530 Subject: [PATCH] Fix include paths for xcpp17 lite kernel --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f7789abc..46841087 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,6 @@ function(configure_native_kernel kernel) endfunction() function(configure_wasm_kernel kernel) - set(XEUS_CPP_RESOURCE_DIR "/lib/clang/${CPPINTEROP_LLVM_VERSION_MAJOR}" PARENT_SCOPE) configure_file ( "${CMAKE_CURRENT_SOURCE_DIR}${kernel}wasm_kernel.json.in" @@ -170,6 +169,7 @@ endfunction() message("Configure kernels: ...") if(EMSCRIPTEN) + set(XEUS_CPP_RESOURCE_DIR "/lib/clang/${CPPINTEROP_LLVM_VERSION_MAJOR}") configure_wasm_kernel("/share/jupyter/kernels/xcpp17/") configure_wasm_kernel("/share/jupyter/kernels/xcpp20/") configure_wasm_kernel("/share/jupyter/kernels/xcpp23/")