77683bf0e8
Initial testing include an "id test", which really just a
template test at this point, and a temperature sensor test.
The google test code is included in this commit. It will
eventually be taken out and replaced with a pull from a google
external repo.
Change-Id: I591818a9c169f4654fc8d8f17cf648f227d72545
[ROCm/rdc commit: ca4344f5fa]
17 lines
461 B
Plaintext
17 lines
461 B
Plaintext
AC_INIT([Google C++ Mocking and Testing Frameworks],
|
|
[1.8.0],
|
|
[googlemock@googlegroups.com],
|
|
[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
|