Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,14 @@ SUBDIRS += contrib

include src/libmesh_SOURCES

# When Kokkos support is enabled, add the Kokkos FE type-conversion sources.
# These are kept in src/kokkos/ and not in src/libmesh_SOURCES (which is
# auto-generated) so that they don't affect non-Kokkos builds.
if LIBMESH_ENABLE_KOKKOS
libmesh_SOURCES += src/kokkos/fe_types.C
AM_CPPFLAGS += $(KOKKOS_CPPFLAGS) -I$(top_srcdir)/include
endif

# A convenience library to hold proper libMesh
# objects. This will get appended with any contributed
# sources to create the final library.
Expand Down
1,202 changes: 560 additions & 642 deletions Makefile.in

Large diffs are not rendered by default.

431 changes: 132 additions & 299 deletions aclocal.m4

Large diffs are not rendered by default.

Loading