Skip to content

Commit

Permalink
Fix CMake error about missing target MPI::MPI_C (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
timonegk authored Sep 4, 2024
1 parent e933ab5 commit e0618ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.0)
# Extract package name and version from package.xml
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 CXX C)

option(BUILD_PYTHON "Build Python bindings" ON)

Expand Down

0 comments on commit e0618ed

Please sign in to comment.