From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f196.google.com (mail-lj1-f196.google.com [209.85.208.196]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id A0BC8469719 for ; Thu, 12 Nov 2020 22:51:37 +0300 (MSK) Received: by mail-lj1-f196.google.com with SMTP id l10so7653935lji.4 for ; Thu, 12 Nov 2020 11:51:37 -0800 (PST) From: Cyrill Gorcunov Date: Thu, 12 Nov 2020 22:51:11 +0300 Message-Id: <20201112195121.191366-2-gorcunov@gmail.com> In-Reply-To: <20201112195121.191366-1-gorcunov@gmail.com> References: <20201112195121.191366-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 01/11] build: add more ignore paths for tags target List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Vladislav Shpilevoy Our .gitignore has been extended recently lets add more paths to skip when building the tags target. Signed-off-by: Cyrill Gorcunov --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa6818f8e..84f77dc2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,6 +150,12 @@ check_function_exists(getprogname HAVE_GETPROGNAME) list(APPEND tagsExclude "--exclude=.git/*") list(APPEND tagsExclude "--exclude=.pc/*") list(APPEND tagsExclude "--exclude=patches/*") +list(APPEND tagsExclude "--exclude=.git-ignore/*") +list(APPEND tagsExclude "--exclude=coverity/*") +list(APPEND tagsExclude "--exclude=coverage/*") +list(APPEND tagsExclude "--exclude=./build/*") +list(APPEND tagsExclude "--exclude=.idea/*") +list(APPEND tagsExclude "--exclude=src/module.h") add_custom_target(tags COMMAND ${CTAGS} -R ${tagsExclude} -f tags WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) add_custom_target(ctags DEPENDS tags) -- 2.26.2