From 6bbf9c82b970b6a64cbc73d109312ee4eaeac8ad Mon Sep 17 00:00:00 2001 From: Konstantin Osipov <kostja@tarantool.org> Date: Tue, 20 Aug 2013 19:34:32 +0400 Subject: [PATCH] Enable 'make tags' target. Old TAGS was emcas style, and was unmaintained. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91a29c15b6..fd24c52183 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,9 +84,9 @@ check_function_exists(memrchr HAVE_MEMRCHR) check_library_exists("" __libc_stack_end "" HAVE_LIBC_STACK_END) # -# Enable 'make TAGS' target. +# Enable 'make tags' target. # -add_custom_target(TAGS COMMAND ctags -R --langmap=ObjectiveC:.m -e -f TAGS +add_custom_target(tags COMMAND ctags -R -f tags WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) # -- GitLab