X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fmeson.build;h=1737d86b884b9c2d39fc83efb9a8edddc31bb381;hb=3e9d6bd447fb;hp=f879cb6759d4a23a7146eb0911de69b33a1bbe5f;hpb=c1ebe3c0c0b3882bcc6cade48be351f565283629;p=dpdk.git diff --git a/drivers/meson.build b/drivers/meson.build index f879cb6759..1737d86b88 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -7,6 +7,7 @@ driver_classes = ['common', 'mempool', # depends on common and bus. 'net', # depends on common, bus and mempool. 'crypto', # depends on common, bus and mempool (net in future). + 'compress', # depends on common, bus, mempool. 'event', # depends on common, bus, mempool and net. 'raw'] # depends on common, bus, mempool, net and event. @@ -31,6 +32,9 @@ foreach class:driver_classes sources = [] objs = [] cflags = machine_args + if cc.has_argument('-Wno-format-truncation') + cflags += '-Wno-format-truncation' + endif includes = [include_directories(drv_path)] # set up internal deps. Drivers can append/override as necessary deps = std_deps