From 32d2d01140acfd48709e485e75641461f64b328e Mon Sep 17 00:00:00 2001 From: skliper <47541139+skliper@users.noreply.github.com> Date: Mon, 29 Jun 2020 16:09:58 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb4fee6..1d1494a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ sample_lib implements SAMPLE_Function, as an example for how to build and link a - Minor updates (see https://github.com/nasa/sample_lib/pull/14) -### ***OFFICIAL RELEASE: 1.1.0*** +### ***OFFICIAL RELEASE: 1.1.0 - Aquila*** - Minor updates (see https://github.com/nasa/sample_lib/pull/6) - Released as part of cFE 6.7.0, Apache 2.0 From d5c7a7d1416d5aed8d9c2d3345686e79c7bade29 Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Thu, 23 Jul 2020 10:21:59 -0400 Subject: [PATCH 2/2] Fix #26, Install unit test --- unit-test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/unit-test/CMakeLists.txt b/unit-test/CMakeLists.txt index 82a146d..cc53e2e 100644 --- a/unit-test/CMakeLists.txt +++ b/unit-test/CMakeLists.txt @@ -92,6 +92,7 @@ foreach(SRCFILE ${LIB_SRC_FILES}) # Add it to the set of tests to run as part of "make test" add_test(${TESTNAME} ${TESTNAME}-testrunner) + install(TARGETS ${TESTNAME}-testrunner DESTINATION ${TGTNAME}/${UT_INSTALL_SUBDIR}) endforeach()