mirror of https://github.com/GNOME/gimp.git
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:
parent
d64cbf1993
commit
bb9716d609
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue