From 4eb1b366401320b95cd4b3e85aa38bb433d9536b Mon Sep 17 00:00:00 2001 From: Daniel Nicoletti Date: Wed, 30 Oct 2024 21:08:33 -0300 Subject: [PATCH] Update CMakeLists.txt Specify C++ language to avoid searching for C compiler --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a263aef5..b3311d6fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ if(HUNTER_ENABLED) message(STATUS "jwt-cpp: using hunter for dependency resolution") endif() -project(jwt-cpp) +project(jwt-cpp LANGUAGES CXX) option(JWT_BUILD_EXAMPLES "Configure CMake to build examples (or not)" ON) option(JWT_BUILD_TESTS "Configure CMake to build tests (or not)" OFF)