sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5e9fe97e36b5e33b9919c2cfee776fc8eac05959
parent 7c089442c3c9877eec2422780f6ce57315de2d11
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 18 Feb 2018 11:20:18 -0500

Add -Wno-unused-function

This is temporary, it helps while we work on porting and large swaths of
the code are commented out.

Diffstat:
Mmeson.build | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -10,6 +10,7 @@ project( ) add_project_arguments('-Wno-unused-parameter', language: 'c') +add_project_arguments('-Wno-unused-function', language: 'c') cc = meson.get_compiler('c')