build/linux: Enable colorful output under 'flatpak-builder'

Following 0f425554

Ninja and Cmake (which some modules use) supports colorful output.
To enable it, we need to set in the manifest due to the sandboxing.

See also: https://github.com/flatpak/flatpak-builder/issues/605
This commit is contained in:
Bruno 2024-06-18 15:43:06 -03:00
parent d64cbf1993
commit bb9716d609
No known key found for this signature in database
1 changed files with 8 additions and 3 deletions

View File

@ -15,8 +15,11 @@
"CC": "ccache clang",
"CXX": "ccache clang++",
"CC_LD": "lld",
"CXX_LD": "lld"
}
"CXX_LD": "lld",
"CLICOLOR_FORCE": "1"
},
"cflags": "-fcolor-diagnostics",
"cxxflags": "-fcolor-diagnostics"
},
"separate-locales": false,
"rename-desktop-file": "gimp.desktop",
@ -244,7 +247,9 @@
"env": {
"CC": "gcc",
"CXX": "gcc"
}
},
"cflags-override": true,
"cxxflags-override": true
},
"config-opts": [
"--disable-static",