From 6dd190d154db29fad071574aa5558f15a70752ad Mon Sep 17 00:00:00 2001 From: Daniel Nicoletti Date: Sat, 2 Nov 2024 06:10:36 -0300 Subject: [PATCH] Update CMakeLists.txt (#365) 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)