From a6e5bd4824be4d6290071ede8db5111fe85dd8f7 Mon Sep 17 00:00:00 2001 From: anutosh491 Date: Thu, 24 Oct 2024 15:45:09 +0530 Subject: [PATCH] Update message after finding CppInterOp --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be5d3928..31ab854a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,7 +103,10 @@ endif () find_package(CppInterOp ${CppInterOp_REQUIRED_VERSION} REQUIRED) if(CppInterOp_FOUND) - message(STATUS "Found CppInterOp: config=${CPPINTEROP_CONFIG} dir=${CPPINTEROP_DIR} (found version=${CPPINTEROP_VERSION} compatible with Clang ${CPPINTEROP_LLVM_VERSION_MAJOR}.x)") + message(STATUS "Found CppInterOp: compatible with Clang ${CPPINTEROP_LLVM_VERSION_MAJOR}.x") + # TODO : Fix after variables are set correctly + # Check https://github.com/compiler-research/CppInterOp/pull/336 + # message(STATUS "Found CppInterOp: config=${CPPINTEROP_CONFIG} dir=${CPPINTEROP_DIR} (found version=${CPPINTEROP_VERSION} compatible with Clang ${CPPINTEROP_LLVM_VERSION_MAJOR}.x)") endif() find_package(argparse REQUIRED)