configure.ac 461 B

12345678910111213141516
  1. AC_INIT([Google C++ Mocking and Testing Frameworks],
  2. [1.8.0],
  3. [googlemock@googlegroups.com],
  4. [googletest])
  5. # Provide various options to initialize the Autoconf and configure processes.
  6. AC_PREREQ([2.59])
  7. AC_CONFIG_SRCDIR([./README.md])
  8. AC_CONFIG_AUX_DIR([build-aux])
  9. AC_CONFIG_FILES([Makefile])
  10. AC_CONFIG_SUBDIRS([googletest googlemock])
  11. AM_INIT_AUTOMAKE
  12. # Output the generated files. No further autoconf macros may be used.
  13. AC_OUTPUT