-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
32,817 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,23 @@ | |
# 2007-2021, Jose Luis Blanco <[email protected]> | ||
# ---------------------------------------------------------------------------- | ||
|
||
if (POLICY CMP0048) | ||
# cmake warns if loaded from a min-3.x-required parent dir: | ||
# ------------------------- | ||
# Setup CMake | ||
# ------------------------- | ||
# Minimum version required for: | ||
# - target_compile_features() => 3.8.0 | ||
# - cmakemodules/ECMFindModuleHelpers.cmake:112 => 3.16.0 (Available in Ubuntu >=20.04) | ||
cmake_minimum_required(VERSION 3.16.0) | ||
|
||
if (POLICY CMP0048) # cmake warns if loaded from a min-3.x-required parent dir: | ||
cmake_policy(SET CMP0048 NEW) | ||
endif() | ||
if (POLICY CMP0075) # CheckIncludeFile: Yes, we will set "CMAKE_REQUIRED_LIBRARIES". | ||
cmake_policy(SET CMP0075 NEW) | ||
endif() | ||
if (POLICY CMP0135) # The DOWNLOAD_EXTRACT_TIMESTAMP option was not given | ||
cmake_policy(SET CMP0135 NEW) | ||
endif() | ||
|
||
# Tell CMake we'll use both C & C++ for use in its tests/flags. | ||
project(MRPT LANGUAGES C CXX) | ||
|
@@ -31,18 +44,6 @@ if (DEFINED CACHE{CMAKE_BUILD_TYPE}) | |
"Debug" "Release" "MinSizeRel" "RelWithDebInfo" "Coverage" "SanitizeAddress" "SanitizeThread") | ||
endif() | ||
|
||
# ------------------------- | ||
# Setup CMake | ||
# ------------------------- | ||
# Minimum version required for: | ||
# - target_compile_features() => 3.8.0 | ||
# - cmakemodules/ECMFindModuleHelpers.cmake:112 => 3.16.0 (Available in Ubuntu >=20.04) | ||
cmake_minimum_required(VERSION 3.16.0) | ||
|
||
# CheckIncludeFile: Yes, we will set "CMAKE_REQUIRED_LIBRARIES". | ||
if (POLICY CMP0075) | ||
cmake_policy(SET CMP0075 NEW) | ||
endif() | ||
|
||
if ((NOT IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/nanogui/include") | ||
OR (NOT IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/rplidar_sdk/sdk/sdk") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<package format="3"> | ||
<name>mrpt2</name> | ||
<!-- Before updating version number, read [MRPT_ROOT]/version_prefix.txt first --> | ||
<version>2.9.3</version> | ||
<version>2.9.4</version> | ||
<description>Mobile Robot Programming Toolkit (MRPT) version 2.x</description> | ||
|
||
<author email="[email protected]">Jose-Luis Blanco-Claraco</author> | ||
|
@@ -47,6 +47,7 @@ | |
<build_depend>libudev-dev</build_depend> | ||
<build_depend>libusb-1.0-dev</build_depend> | ||
<build_depend>pybind11-dev</build_depend> | ||
<build_depend>python3-pip</build_depend> | ||
<build_depend>tinyxml2</build_depend> | ||
<build_depend>wx-common</build_depend> | ||
<build_depend>wxwidgets</build_depend> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.