From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5300646284; Thu, 20 Feb 2025 22:31:49 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9652840673; Thu, 20 Feb 2025 22:31:23 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 0D83D402EF for ; Thu, 20 Feb 2025 22:31:15 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id DAF82206940B; Thu, 20 Feb 2025 13:31:13 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com DAF82206940B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1740087073; bh=mpKdIy61gyRYiRcav3/U6fSEIAxqPTTlItLbLWXI+6M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TWQ82NIpFEld8BnZ/g5HPlAUH1+4lq1RG1+nVoU5BKItPn2be0KJ9Z0vO6t6FURuW 5BeUCUnK1BvWe2lEehxXklrCzoQrlOMcLs974+FyVNDzKSe4nYuw+HfC4p/xit+Kzt EMQhfeRdoCestbS/B2OzqSFOyaJQhWEtdn88CxwA= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org Subject: [PATCH v4 10/10] app: enable app directory to be compiled with MSVC Date: Thu, 20 Feb 2025 13:31:04 -0800 Message-Id: <1740087064-18680-11-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1740087064-18680-1-git-send-email-andremue@linux.microsoft.com> References: <1739311325-14425-1-git-send-email-andremue@linux.microsoft.com> <1740087064-18680-1-git-send-email-andremue@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Enabled "app" directory to be compiled with MSVC along with all its contents. Removed flag Wno-deprecated-declarations which is not needed anymore. Signed-off-by: Andre Muezerie Acked-by: Bruce Richardson --- app/meson.build | 4 ---- app/test-pmd/meson.build | 1 - 2 files changed, 5 deletions(-) diff --git a/app/meson.build b/app/meson.build index e2db888ae1..1798db3ae4 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,10 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017-2019 Intel Corporation -if is_ms_compiler - subdir_done() -endif - disable_apps = ',' + get_option('disable_apps') disable_apps = run_command(list_dir_globs, disable_apps, check: true).stdout().split() diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index f1c36529b4..000548c261 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -3,7 +3,6 @@ # override default name to drop the hyphen name = 'testpmd' -cflags += '-Wno-deprecated-declarations' sources = files( '5tswap.c', 'cmdline.c', -- 2.48.1.vfs.0.0