From a9648f8ff90f3a62a322807e558aee0d6cd04902 Mon Sep 17 00:00:00 2001 From: memsharded Date: Wed, 27 Mar 2024 11:39:56 +0100 Subject: [PATCH] fix --- conan_provider.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conan_provider.cmake b/conan_provider.cmake index 7c7117d3..853c0492 100644 --- a/conan_provider.cmake +++ b/conan_provider.cmake @@ -297,14 +297,14 @@ macro(append_compiler_executables_configuration) "Please define CMAKE_C_COMPILER or enable the C language.") endif() if(CMAKE_CXX_COMPILER) - set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") + set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\",") set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) else() message(WARNING "CMake-Conan: The C++ compiler is not defined. " "Please define CMAKE_CXX_COMPILER or enable the C++ language.") endif() if(CMAKE_RC_COMPILER) - set(_conan_rc_compiler "\"rc\":\"${CMAKE_RC_COMPILER}\",") + set(_conan_rc_compiler "\"rc\":\"${CMAKE_RC_COMPILER}\"") # Not necessary to warn if RC not defined endif()