first commit

This commit is contained in:
duongtd 2026-01-14 15:23:35 +07:00
parent 99662d6d47
commit c0fc5e29c1
23 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
cmake_minimum_required(VERSION 3.0.2) cmake_minimum_required(VERSION 3.0.2)
project(grid_map_core VERSION 1.0.0 LANGUAGES CXX) project(robot_grid_map_core VERSION 1.0.0 LANGUAGES CXX)
# ======================================================== # ========================================================
# Detect Catkin or Standalone # Detect Catkin or Standalone
# ======================================================== # ========================================================
if(DEFINED CATKIN_DEVEL_PREFIX OR DEFINED CATKIN_TOPLEVEL) if(DEFINED CATKIN_DEVEL_PREFIX OR DEFINED CATKIN_TOPLEVEL)
set(BUILDING_WITH_CATKIN TRUE) set(BUILDING_WITH_CATKIN TRUE)
message(STATUS "Building grid_map_core with Catkin") message(STATUS "Building robot_grid_map_core with Catkin")
else() else()
set(BUILDING_WITH_CATKIN FALSE) set(BUILDING_WITH_CATKIN FALSE)
message(STATUS "Building grid_map_core with Standalone CMake") message(STATUS "Building robot_grid_map_core with Standalone CMake")
endif() endif()
# ======================================================== # ========================================================