From d4be6405e168a5b13993ce3e1ee7cef6a82b1935 Mon Sep 17 00:00:00 2001 From: Tomas Zigo Date: Thu, 6 Aug 2026 19:51:07 +0200 Subject: [PATCH] wxGUI/jupyter_notebook: fix copying missing template notebook files During compilation process if CMake was used. --- gui/wxpython/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gui/wxpython/CMakeLists.txt b/gui/wxpython/CMakeLists.txt index 46b8f439203..2261deb385b 100644 --- a/gui/wxpython/CMakeLists.txt +++ b/gui/wxpython/CMakeLists.txt @@ -27,6 +27,13 @@ foreach(gui_lib_DIR ${gui_lib_DIRS}) DIRECTORY "${OUTDIR}/${WXPYTHON_DIR}/${gui_lib_DIR}" DESTINATION "${WXPYTHON_DIR}" ) + if(gui_lib_DIR MATCHES "jupyter_notebook") + install( + DIRECTORY + "${CMAKE_CURRENT_SOURCE_DIR}/${gui_lib_DIR}/template_notebooks" + DESTINATION "${WXPYTHON_DIR}/${gui_lib_DIR}" + ) + endif() endforeach() add_custom_target( GUI_WXPYTHON