Meta: Generate correct format for user-variables.cmake

This commit is contained in:
Bernard Niset 2025-08-06 21:38:59 +02:00 committed by Tim Flynn
parent e534395243
commit 02b5ab385a

View File

@ -240,9 +240,9 @@ def configure_skia_jemalloc() -> list[str]:
with open(user_vars_cmake_module, "w") as f: with open(user_vars_cmake_module, "w") as f:
f.writelines( f.writelines(
[ [
f"set(PKGCONFIG {pkg_config})", f"set(PKGCONFIG {pkg_config})\n",
f"set(GN {gn})", f"set(GN {gn})\n",
"", "\n",
] ]
) )