Skip to content

Commit

Permalink
build/linux: Enable colorful output under 'flatpak-builder'
Browse files Browse the repository at this point in the history
Following 0f42555

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: flatpak/flatpak-builder#605
  • Loading branch information
brunvonlope committed Jun 18, 2024
1 parent d64cbf1 commit bb9716d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build/linux/flatpak/org.gimp.GIMP-nightly.json.in
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -244,7 +247,9 @@
"env": {
"CC": "gcc",
"CXX": "gcc"
}
},
"cflags-override": true,
"cxxflags-override": true
},
"config-opts": [
"--disable-static",
Expand Down

0 comments on commit bb9716d

Please sign in to comment.