diff options
| author | Michael Forney <mforney@mforney.org> | 2020-06-04 20:48:01 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2020-06-05 03:01:44 -0700 |
| commit | d4297a13c823b62d29d9850ab5815f6c78baf35a (patch) | |
| tree | 153ebe760b69008ea6ff38d7066368d6f254b96b /pkg/velox | |
| parent | ab438ea71e5b61956b9ad8c5b5f56e3a6c6b66c3 (diff) | |
Use -isystem to include library headers
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.
To make sure we still track dependencies, use -MD instead of -MMD.
Diffstat (limited to 'pkg/velox')
| -rw-r--r-- | pkg/velox/gen.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pkg/velox/gen.lua b/pkg/velox/gen.lua index 04fb2c0d..2db0a9f0 100644 --- a/pkg/velox/gen.lua +++ b/pkg/velox/gen.lua @@ -1,14 +1,14 @@ cflags{ string.format([[-D 'VELOX_LIBEXEC="%s/libexec/velox"']], config.prefix), '-I $outdir', - '-I $builddir/pkg/fontconfig/include', - '-I $builddir/pkg/libinput/include', - '-I $builddir/pkg/libxkbcommon/include', - '-I $builddir/pkg/linux-headers/include', - '-I $builddir/pkg/pixman/include', - '-I $builddir/pkg/swc/include', - '-I $builddir/pkg/wayland/include', - '-I $builddir/pkg/wld/include', + '-isystem $builddir/pkg/fontconfig/include', + '-isystem $builddir/pkg/libinput/include', + '-isystem $builddir/pkg/libxkbcommon/include', + '-isystem $builddir/pkg/linux-headers/include', + '-isystem $builddir/pkg/pixman/include', + '-isystem $builddir/pkg/swc/include', + '-isystem $builddir/pkg/wayland/include', + '-isystem $builddir/pkg/wld/include', } waylandproto('protocol/velox.xml', { |
