From f57e1cd7a55b2122a922d5ab2603015d39f6fdab Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Thu, 6 Feb 2025 23:49:12 +0800 Subject: [PATCH] Added header file path inclusion on Windows GUI installer build script --- tools/build_exe_installer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/build_exe_installer.py b/tools/build_exe_installer.py index a032e9b..f29eda6 100644 --- a/tools/build_exe_installer.py +++ b/tools/build_exe_installer.py @@ -102,6 +102,7 @@ def file_to_c_array(file_path, array_name): 'tools\\windows_installer\\installer_util.cpp', 'tools\\windows_installer\\installer.cpp', + '-I' + os.path.join(msys2_path, 'include'), '-I' + os.path.join(msys2_path, 'include', 'gtkmm-3.0'), '-I' + os.path.join(msys2_path, 'lib', 'gtkmm-3.0', 'include'), '-I' + os.path.join(msys2_path, 'include', 'atkmm-1.6'),