Gimp/tools/meson_install_win_debug.py
Bruno Lopes 381ea0c6d2 build/windows: Move Windows .pdb utility to tools/
This reverts 63f5ea9d regarding the file naming

Since the script is an utility pretty much one-task, it suits better on tools,
similarly to what we do on babl and meson (but on these we put on root).
And, along with 8c0f92b3, it makes build/windows less scary with less files.
2025-12-26 19:15:15 -03:00

46 lines
2.1 KiB
Python

#!/usr/bin/env python3
import os
import shutil
import re
import sys
import json
if not os.path.isfile("build.ninja"):
print("\033[31m(ERROR)\033[0m: Script called standalone. This script should be only called from build systems.")
sys.exit(1)
# This .py script should not even exist
# Ideally meson should take care of it automatically.
# See: https://github.com/mesonbuild/meson/issues/12977
if os.getenv("MESON_BUILD_ROOT", False):
with open("meson-info/intro-installed.json", "r") as f:
build_installed = json.load(f)
for build_bin, installed_bin in build_installed.items():
if build_bin.endswith((".dll", ".exe")):
pdb_debug = os.path.splitext(build_bin)[0] + ".pdb"
install_dir = os.path.dirname(installed_bin)
if os.path.isfile(pdb_debug):
if not os.getenv("MESON_INSTALL_DRY_RUN"):
print(f"Installing {pdb_debug} to {install_dir}")
shutil.copy2(pdb_debug, install_dir)
# This 'else:' part is injected by 1_build-deps-msys2.ps1 when
# we build some dependency that uses Cmake. Like meson,
# it also do not auto install .pdb files by default.
else:
for build_root, dirs, files in os.walk(os.getcwd()):
for file in files:
if file.endswith('_install.cmake'):
with open(os.path.join(build_root, file), "r") as f:
content = f.read()
installed_root = re.search(r'set\s*\(\s*CMAKE_INSTALL_PREFIX\s*"([^"]+)"\s*\)', content).group(1)
for build_bin_line in re.findall(r'file\([^\)]*FILES\s+"[^"]+\.(?:dll|exe)"[^\)]*\)', content):
build_bin = re.search(r'FILES\s+"([^"]+\.(?:dll|exe))"', build_bin_line).group(1)
pdb_debug = os.path.splitext(build_bin)[0] + ".pdb"
install_dir = os.path.join(installed_root, re.search(r'DESTINATION\s+"\$\{CMAKE_INSTALL_PREFIX\}(/[^"\s]+)"', build_bin_line).group(1).lstrip('/'))
if os.path.isfile(pdb_debug):
print(f"-- Installing: {install_dir}/{os.path.basename(pdb_debug)}")
if not os.path.exists(install_dir):
os.makedirs(install_dir)
shutil.copy2(pdb_debug, install_dir)