From 9f998c493e356a8f8a21198ec206b8eb1c0b64e0 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 20 Aug 2024 15:10:00 +0200 Subject: [PATCH] Declare dependency on C to avoid the CMAKE default of C,C++ --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe76ffbf9..1753fa4cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.13) -project(LAPACK) +project(LAPACK C) set(LAPACK_MAJOR_VERSION 3) set(LAPACK_MINOR_VERSION 12)