trace: fixup CTF event description at registration
[dpdk.git] / lib / librte_cmdline / meson.build
index 07334c1..5009b33 100644 (file)
@@ -1,8 +1,6 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 2
-allow_experimental_apis = true
 sources = files('cmdline.c',
        'cmdline_cirbuf.c',
        'cmdline_parse.c',
@@ -27,4 +25,10 @@ headers = files('cmdline.h',
        'cmdline_cirbuf.h',
        'cmdline_parse_portlist.h')
 
+if is_windows
+       sources += files('cmdline_os_windows.c')
+else
+       sources += files('cmdline_os_unix.c')
+endif
+
 deps += ['net']