From a06173882081898594190ab27b9825ba301dc4c9 Mon Sep 17 00:00:00 2001 From: Matteo Forlani <43993777+matteofo@users.noreply.github.com> Date: Fri, 28 Nov 2025 08:37:21 +0100 Subject: [PATCH] Fix file dialog not opening on macOS 26 (#24) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ce3127..e151004 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,6 +73,7 @@ set(FORMS # Platform-specific executable creation if(APPLE) set(MACOSX_BUNDLE_ICON_FILE ndsfactory.icns) + set(MACOSX_BUNDLE_GUI_IDENTIFIER dev.lucadamico.ndsfactory) set(MACOS_ICNS "res/ndsfactory.icns") set_source_files_properties(${MACOS_ICNS} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources") add_executable(${PROJECT_NAME} MACOSX_BUNDLE ${SOURCES} ${HEADERS} ${FORMS} ${MACOS_ICNS})