Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to MueLu CMake configuration #12881

Merged
Changes from all 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
4 changes: 2 additions & 2 deletions packages/muelu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ IF(${PACKAGE_NAME}_ENABLE_EXPLICIT_INSTANTIATION)

# <double, int, long>
IF(Tpetra_INST_DOUBLE AND Tpetra_INST_INT_LONG)
GLOBAL_SET(${PACKAGE_NAME}_HAVE_GO_INT ON)
GLOBAL_SET(${PACKAGE_NAME}_HAVE_GO_LONG ON)
GLOBAL_SET(${PACKAGE_NAME}_INST_DOUBLE_INT_LONGINT ON)
GLOBAL_SET(HAVE_${PACKAGE_NAME_UC}_INST_DOUBLE_INT_LONGINT ON)
ELSE()
Expand Down Expand Up @@ -280,7 +280,7 @@ IF(${PACKAGE_NAME}_ENABLE_EXPLICIT_INSTANTIATION)

# <float, int, int>
IF(Tpetra_INST_FLOAT AND Tpetra_INST_INT_INT)
GLOBAL_SET(${PACKAGE_NAME}_HAVE_GO_LONG ON)
GLOBAL_SET(${PACKAGE_NAME}_HAVE_GO_INT ON)
GLOBAL_SET(${PACKAGE_NAME}_INST_FLOAT_INT_INT ON)
GLOBAL_SET(HAVE_${PACKAGE_NAME_UC}_INST_FLOAT_INT_INT ON)
ELSE()
Expand Down