Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save awesomebytes/09699bfbd8c07f80e92069b463dd868b to your computer and use it in GitHub Desktop.

Select an option

Save awesomebytes/09699bfbd8c07f80e92069b463dd868b to your computer and use it in GitHub Desktop.
From 4e374ff1baca49965c8f9e6f0617e66d639ae37d Mon Sep 17 00:00:00 2001
From: Sammy Pfeiffer <Sammy.Pfeiffer@student.uts.edu.au>
Date: Sun, 15 Mar 2020 09:33:15 +0000
Subject: [PATCH 1/1] Fix Uknown CMake command check_include_file
---
CMakeLists.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e8da3203..70fff5a5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,8 @@
cmake_minimum_required(VERSION 2.8.3)
project(voxel_grid)
+include(CheckIncludeFile)
+
find_package(catkin REQUIRED
COMPONENTS
roscpp
--
2.25.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment