From 0e324e6d7752a77d4925a73d5027eaebf3aeff69 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Wed, 2 Aug 2023 13:05:14 +0200 Subject: CMakeLists.txt: Set project language to C Otherwise, CMake by default tests the system C++ compiler, but this is not a requirement for slcl. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 56fd5ca..9c8b9a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.13) -project(slcl) +project(slcl C) add_executable(${PROJECT_NAME} auth.c base64.c -- cgit v1.2.3