From cd959a298c46d93bc09fd1b2926a2763ba5a660d Mon Sep 17 00:00:00 2001 From: Tyler Marr Date: Mon, 10 Jul 2023 19:52:52 +0000 Subject: [PATCH] Fixed issue around Could NOT find MPI (missing: MPI_C_FOUND C) --- noether_gui/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noether_gui/CMakeLists.txt b/noether_gui/CMakeLists.txt index 954a1023..9f4bc92c 100644 --- a/noether_gui/CMakeLists.txt +++ b/noether_gui/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.5.1) find_package(ros_industrial_cmake_boilerplate REQUIRED) extract_package_metadata(pkg) -project(${pkg_extracted_name} VERSION ${pkg_extracted_version} LANGUAGES CXX) +project(${pkg_extracted_name} VERSION ${pkg_extracted_version} LANGUAGES C CXX) find_package(Eigen3 REQUIRED) find_package(Boost REQUIRED COMPONENTS program_options)