mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 10:39:08 +08:00
efa3860de7
* Add export list generation [skip actions] * Refresh exports using dumpbin * [nettle] Update to 3.8.1 [skip actions] * Disable testsuite and examples [skip actions] * Update exports for x64 [skip actions] * Update exports for x86 [skip actions] * Finish update * Fix installation of DLLs * Add feature to control tools * Fix CCAS --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
33 lines
761 B
Diff
33 lines
761 B
Diff
diff --git a/Makefile.in b/Makefile.in
|
|
index c7dd33f..6d4387e 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -22,7 +22,7 @@ OPT_NETTLE_SOURCES = @OPT_NETTLE_SOURCES@
|
|
|
|
FAT_TEST_LIST = @FAT_TEST_LIST@
|
|
|
|
-SUBDIRS = tools testsuite examples
|
|
+SUBDIRS = @IF_TOOLS@ tools
|
|
|
|
include config.make
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index b629e39..2464514 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -24,6 +24,14 @@ AC_SUBST([MINOR_VERSION])
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
+AC_ARG_ENABLE(tools,[])
|
|
+if test "x$enable_tools" = xyes ; then
|
|
+ IF_TOOLS=''
|
|
+else
|
|
+ IF_TOOLS='#'
|
|
+fi
|
|
+AC_SUBST([IF_TOOLS])
|
|
+
|
|
# Command line options
|
|
AC_ARG_WITH(include-path,
|
|
AC_HELP_STRING([--with-include-path], [A colon-separated list of directories to search for include files]),,
|