Do not compile tools by default

This commit is contained in:
emeric
2019-05-21 13:32:13 +02:00
parent 98cc0aa619
commit ae8aadfdde
2 changed files with 9 additions and 1 deletions
+7 -1
View File
@@ -88,6 +88,12 @@ AC_CONFIG_FILES([Makefile
tools/similarity/Makefile
tools/metadata/Makefile])
AC_ARG_ENABLE([tools],
[AC_HELP_STRING([--enable-tools], [Build the tools])],
[:],
[enable_tools=no])
AM_CONDITIONAL([BUILD_TOOLS], [test "$enable_tools" = "yes"])
AC_OUTPUT
+2
View File
@@ -1,2 +1,4 @@
if BUILD_TOOLS
SUBDIRS = similarity metadata
endif