From 22df8f4be829ebcab905b94e5405b294eb880496 Mon Sep 17 00:00:00 2001 From: Johannes Markert Date: Tue, 5 Dec 2023 14:58:05 +0100 Subject: [PATCH] Registering headers in build system missing in the release tarball. --- src/Makefile.am | 6 ++++-- test/Makefile.am | 12 +++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 28f686305e..5c15509c6f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,7 +96,9 @@ libt8_internal_headers = \ src/t8_forest/t8_forest_cxx.h \ src/t8_forest/t8_forest_ghost.h \ src/t8_forest/t8_forest_balance.h src/t8_forest/t8_forest_types.h \ - src/t8_forest/t8_forest_private.h + src/t8_forest/t8_forest_private.h \ + src/t8_mat.h \ + src/t8_windows.h libt8_compiled_sources = \ src/t8.c src/t8_eclass.c src/t8_mesh.c \ src/t8_element.c src/t8_element_cxx.cxx \ @@ -153,7 +155,7 @@ src_libt8_la_SOURCES = \ src_libt8_la_CPPFLAGS = $(AM_CPPFLAGS) $(T8_CPPFLAGS) ## This is the official API versioning scheme of libtool. Please see: ## Read https://www.gnu.org/software/libtool/manual/libtool.html#Versioning -src_libt8_la_LDFLAGS = -release $(VERSION) -version-info 2:0:0 +src_libt8_la_LDFLAGS = -version-info 2:0:0 src_libt8_la_LIBADD = @T8_P4EST_LDADD@ @T8_SC_LDADD@ LDADD += src/libt8.la @T8_P4EST_LDADD@ @T8_SC_LDADD@ EXTRA_src_libt8_la_DEPENDENCIES = @T8_P4EST_LDADD@ @T8_SC_LDADD@ diff --git a/test/Makefile.am b/test/Makefile.am index ac3e45aa36..6037e832dc 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2,7 +2,15 @@ #Non-recursive Makefile.am in test #Included from toplevel directory -t8code_googletest_installed_headers = test/t8_gtest_custom_assertion.hxx +t8code_googletestincludedir= + +t8code_googletest_installed_headers = \ + test/t8_gtest_custom_assertion.hxx + +t8code_googletest_internal_headers = \ + thirdparty/googletest-mpi/gtest/gtest.h \ + test/t8_gtest_macros.hxx \ + test/t8_schemes/t8_gtest_dfs_base.hxx t8code_googletest_programs = \ test/t8_gtest_cmesh_bcast \ @@ -522,6 +530,8 @@ test_libgtest_la_CPPFLAGS += $(t8_gtest_target_mpi_cpp_flags) endif test_libgtest_la_LDFLAGS = -pthread +dist_t8code_googletestinclude_HEADERS = $(t8code_googletest_installed_headers) +dist_t8code_googletestinclude_HEADERS += $(t8code_googletest_internal_headers) TESTS += $(t8code_googletest_programs) check_PROGRAMS += $(t8code_googletest_programs)