forked from google/googletest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run autoconf from top-level directory.
This is part (hopefully all) of the fixes for google#776. The top-level configure.ac configures googletest first and then googlemock. With this changes it is possible to embed googletest into another project that uses autoconf. For an example (though it is WIP), see the commits (and soon PR) referenced from protocolbuffers/protobuf#236.
- Loading branch information
Showing
5 changed files
with
106 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## Process this file with automake to produce Makefile.in | ||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
AUTOMAKE_OPTIONS = foreign | ||
|
||
# Build . before src so that our all-local and clean-local hooks kicks in at | ||
# the right time. | ||
SUBDIRS = googletest googlemock | ||
|
||
EXTRA_DIST = \ | ||
BUILD.bazel \ | ||
CMakeLists.txt \ | ||
README.md \ | ||
WORKSPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
AC_INIT([Google C++ Mocking and Testing Frameworks], | ||
[1.8.0], | ||
[[email protected]], | ||
[googletest]) | ||
|
||
# Provide various options to initialize the Autoconf and configure processes. | ||
AC_PREREQ([2.59]) | ||
AC_CONFIG_SRCDIR([./README.md]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_FILES([Makefile]) | ||
AC_CONFIG_SUBDIRS([googletest googlemock]) | ||
|
||
AM_INIT_AUTOMAKE | ||
|
||
# Output the generated files. No further autoconf macros may be used. | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters