Kun Yi | 2ae207c | 2018-06-11 16:09:46 -0700 | [diff] [blame] | 1 | # Common flags for all binaries in this subdirectory. |
| 2 | # Per-program specific flags can be specified using |
| 3 | # prg_CPPFLAGS = .... |
| 4 | AM_CPPFLAGS = -I${top_srcdir} $(GTEST_CFLAGS) |
| 5 | AM_CXXFLAGS = $(PTHREAD_CFLAGS) $(GTEST_CFLAGS) |
| 6 | AM_LDFLAGS = $(GTEST_LIBS) $(PTHREAD_LIBS) $(OESDK_TESTCASE_FLAGS) |
| 7 | |
| 8 | # The list of unit test programs we are building and running. |
| 9 | check_PROGRAMS = post_reporter_test |
| 10 | |
| 11 | # Run all 'check' test programs |
| 12 | TESTS = $(check_PROGRAMS) |
| 13 | |
| 14 | # List sources for each test. |
| 15 | post_reporter_test_SOURCES = post_reporter_test.cpp |