From 81790683d01e5e4efbd58cbfd9509c446feb4016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pob=C5=99=C3=ADslo?= Date: Tue, 28 Nov 2023 18:04:33 +0100 Subject: [PATCH] Specify project language in CMake to remove implicit dependency on C++ compiler --- CMakeLists.txt | 2 +- ref10/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f09ae76..9b9eaf1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(libxeddsa VERSION 2.0.0) +project(libxeddsa VERSION 2.0.0 LANGUAGES C) include(CTest) diff --git a/ref10/CMakeLists.txt b/ref10/CMakeLists.txt index 32e068c..cc3217c 100644 --- a/ref10/CMakeLists.txt +++ b/ref10/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(ref10) +project(ref10 LANGUAGES C) include(CTest)