Skip to content

Commit 03b654e

Browse files
authored
remove C from languages (#150)
* remove C from languages the project is written in C++, the Fortran and C interface is also created from a C++ source file wrapped in `extern "C" { ... }` so it should not be necessary to require a C compiler. * Update CMakeLists.txt
1 parent c30bb0b commit 03b654e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(cosma
44
DESCRIPTION "Communication Optimal Matrix Multiplication"
55
HOMEPAGE_URL "https://github.com/eth-cscs/COSMA"
66
VERSION 2.6.6
7-
LANGUAGES CXX C)
7+
LANGUAGES CXX)
88

99

1010
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
@@ -104,7 +104,7 @@ endif()
104104
# Dependencies
105105
# MPI
106106
set(MPI_DETERMINE_LIBRARY_VERSION TRUE)
107-
find_package(MPI COMPONENTS CXX C REQUIRED)
107+
find_package(MPI COMPONENTS CXX REQUIRED)
108108
adjust_mpiexec_flags()
109109

110110
if (NOT COSMA_SCALAPACK MATCHES "OFF")

0 commit comments

Comments
 (0)