Merge pull request #3 from SemvdH/object_detection
Finished object detection nodes
This commit is contained in:
327
.gitignore
vendored
327
.gitignore
vendored
@@ -1,330 +1,3 @@
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/ros2,ros,cmake,c++,python,visualstudiocode,vim
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=ros2,ros,cmake,c++,python,visualstudiocode,vim
|
||||
|
||||
### C++ ###
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
### CMake ###
|
||||
CMakeLists.txt.user
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
CMakeScripts
|
||||
Testing
|
||||
Makefile
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
compile_commands.json
|
||||
CTestTestfile.cmake
|
||||
_deps
|
||||
|
||||
### CMake Patch ###
|
||||
# External projects
|
||||
*-prefix/
|
||||
|
||||
### Python ###
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
cover/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
.pybuilder/
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
# For a library or package, you might want to ignore these files since the code is
|
||||
# intended to run in multiple environments; otherwise, check them in:
|
||||
# .python-version
|
||||
|
||||
# pipenv
|
||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
|
||||
# poetry
|
||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||
#poetry.lock
|
||||
|
||||
# pdm
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||
#pdm.lock
|
||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||
# in version control.
|
||||
# https://pdm.fming.dev/#use-with-ide
|
||||
.pdm.toml
|
||||
|
||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||
__pypackages__/
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# pytype static type analyzer
|
||||
.pytype/
|
||||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
||||
# PyCharm
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
|
||||
### Python Patch ###
|
||||
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
||||
poetry.toml
|
||||
|
||||
# ruff
|
||||
.ruff_cache/
|
||||
|
||||
### ROS ###
|
||||
devel/
|
||||
logs/
|
||||
bin/
|
||||
msg_gen/
|
||||
srv_gen/
|
||||
msg/*Action.msg
|
||||
msg/*ActionFeedback.msg
|
||||
msg/*ActionGoal.msg
|
||||
msg/*ActionResult.msg
|
||||
msg/*Feedback.msg
|
||||
msg/*Goal.msg
|
||||
msg/*Result.msg
|
||||
msg/_*.py
|
||||
build_isolated/
|
||||
devel_isolated/
|
||||
|
||||
# Generated by dynamic reconfigure
|
||||
*.cfgc
|
||||
/cfg/cpp/
|
||||
/cfg/*.py
|
||||
|
||||
# Ignore generated docs
|
||||
*.dox
|
||||
*.wikidoc
|
||||
|
||||
# eclipse stuff
|
||||
.project
|
||||
.cproject
|
||||
|
||||
# qcreator stuff
|
||||
|
||||
srv/_*.py
|
||||
*.pcd
|
||||
*.pyc
|
||||
qtcreator-*
|
||||
*.user
|
||||
|
||||
/planning/cfg
|
||||
/planning/docs
|
||||
/planning/src
|
||||
|
||||
*~
|
||||
|
||||
# Emacs
|
||||
.#*
|
||||
|
||||
# Catkin custom files
|
||||
CATKIN_IGNORE
|
||||
|
||||
### ROS2 ###
|
||||
install/
|
||||
log/
|
||||
|
||||
# Ignore generated docs
|
||||
|
||||
# eclipse stuff
|
||||
|
||||
# qcreator stuff
|
||||
|
||||
|
||||
|
||||
# Emacs
|
||||
|
||||
# Colcon custom files
|
||||
COLCON_IGNORE
|
||||
AMENT_IGNORE
|
||||
|
||||
### Vim ###
|
||||
# Swap
|
||||
[._]*.s[a-v][a-z]
|
||||
!*.svg # comment out if you don't need vector files
|
||||
[._]*.sw[a-p]
|
||||
[._]s[a-rt-v][a-z]
|
||||
[._]ss[a-gi-z]
|
||||
[._]sw[a-p]
|
||||
|
||||
# Session
|
||||
Session.vim
|
||||
Sessionx.vim
|
||||
|
||||
# Temporary
|
||||
.netrwhist
|
||||
# Auto-generated tag files
|
||||
tags
|
||||
# Persistent undo
|
||||
[._]*.un~
|
||||
|
||||
### VisualStudioCode ###
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
### VisualStudioCode Patch ###
|
||||
# Ignore all local history of files
|
||||
.history
|
||||
.ionide
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/ros2,ros,cmake,c++,python,visualstudiocode,vim
|
||||
|
||||
6
.gitmodules
vendored
Normal file
6
.gitmodules
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
[submodule "src/px4_msgs"]
|
||||
path = src/px4_msgs
|
||||
url = git@github.com:PX4/px4_msgs.git
|
||||
[submodule "src/px4_ros_com"]
|
||||
path = src/px4_ros_com
|
||||
url = git@github.com:PX4/px4_ros_com.git
|
||||
25
.vscode/c_cpp_properties.json
vendored
Normal file
25
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"browse": {
|
||||
"databaseFilename": "",
|
||||
"limitSymbolsToIncludedHeaders": true
|
||||
},
|
||||
"includePath": [
|
||||
"/opt/ros/humble/include/**",
|
||||
"/home/ubuntu/ros2_ws/src/beacon_positioning/include/**",
|
||||
"/usr/include/**",
|
||||
"/mnt/Homework/Avans/AFSTUDEERSTAGE/positioning_systems_api/rtls_driver/include/**",
|
||||
"/mnt/Homework/Avans/AFSTUDEERSTAGE/positioning_systems_api/serial_communication/include/**",
|
||||
"/mnt/Homework/Avans/AFSTUDEERSTAGE/terabee_api/include/**"
|
||||
],
|
||||
"name": "ROS",
|
||||
"intelliSenseMode": "gcc-x64",
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "c++14",
|
||||
"configurationProvider": "ms-vscode.cmake-tools"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
76
.vscode/settings.json
vendored
Normal file
76
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"ros.distro": "humble",
|
||||
"files.associations": {
|
||||
"chrono": "cpp",
|
||||
"array": "cpp",
|
||||
"atomic": "cpp",
|
||||
"bit": "cpp",
|
||||
"*.tcc": "cpp",
|
||||
"cctype": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"codecvt": "cpp",
|
||||
"compare": "cpp",
|
||||
"concepts": "cpp",
|
||||
"condition_variable": "cpp",
|
||||
"csignal": "cpp",
|
||||
"cstdint": "cpp",
|
||||
"cstdio": "cpp",
|
||||
"cstdlib": "cpp",
|
||||
"cstring": "cpp",
|
||||
"ctime": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"deque": "cpp",
|
||||
"list": "cpp",
|
||||
"map": "cpp",
|
||||
"set": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"unordered_set": "cpp",
|
||||
"vector": "cpp",
|
||||
"exception": "cpp",
|
||||
"functional": "cpp",
|
||||
"future": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iomanip": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"iostream": "cpp",
|
||||
"istream": "cpp",
|
||||
"limits": "cpp",
|
||||
"memory": "cpp",
|
||||
"mutex": "cpp",
|
||||
"new": "cpp",
|
||||
"numbers": "cpp",
|
||||
"numeric": "cpp",
|
||||
"optional": "cpp",
|
||||
"ostream": "cpp",
|
||||
"ratio": "cpp",
|
||||
"semaphore": "cpp",
|
||||
"shared_mutex": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"stop_token": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"string": "cpp",
|
||||
"string_view": "cpp",
|
||||
"system_error": "cpp",
|
||||
"thread": "cpp",
|
||||
"type_traits": "cpp",
|
||||
"tuple": "cpp",
|
||||
"typeindex": "cpp",
|
||||
"typeinfo": "cpp",
|
||||
"utility": "cpp",
|
||||
"variant": "cpp"
|
||||
},
|
||||
"python.autoComplete.extraPaths": [
|
||||
"/home/ubuntu/ros2_ws/install/px4_msgs/lib/python3.8/site-packages",
|
||||
"/opt/ros/humble/lib/python3.10/site-packages",
|
||||
"/opt/ros/humble/local/lib/python3.10/dist-packages"
|
||||
],
|
||||
"python.analysis.extraPaths": [
|
||||
"/home/ubuntu/ros2_ws/install/px4_msgs/lib/python3.8/site-packages",
|
||||
"/opt/ros/humble/lib/python3.10/site-packages",
|
||||
"/opt/ros/humble/local/lib/python3.10/dist-packages"
|
||||
],
|
||||
"cmake.sourceDirectory": "${workspaceFolder}/src/beacon_positioning"
|
||||
}
|
||||
2
build_beacons.sh
Executable file
2
build_beacons.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
colcon build --packages-select beacon_positioning
|
||||
. install/setup.bash
|
||||
3344
build_log_13-04-23-1012.log
Normal file
3344
build_log_13-04-23-1012.log
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,38 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.8)
|
||||
project(cpp_pubsub)
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
endif()
|
||||
|
||||
# find dependencies
|
||||
find_package(ament_cmake REQUIRED)
|
||||
# uncomment the following section in order to fill in
|
||||
# further dependencies manually.
|
||||
# find_package(<dependency> REQUIRED)
|
||||
find_package(rclcpp REQUIRED)
|
||||
find_package(std_msgs REQUIRED)
|
||||
|
||||
add_executable(talker src/publisher_member_function.cpp)
|
||||
ament_target_dependencies(talker rclcpp std_msgs)
|
||||
add_executable(listener src/subscriber_member_function.cpp)
|
||||
ament_target_dependencies(listener rclcpp std_msgs)
|
||||
|
||||
install(TARGETS
|
||||
talker
|
||||
listener
|
||||
DESTINATION lib/${PROJECT_NAME})
|
||||
|
||||
if(BUILD_TESTING)
|
||||
find_package(ament_lint_auto REQUIRED)
|
||||
# the following line skips the linter which checks for copyrights
|
||||
# comment the line when a copyright and license is added to all source files
|
||||
set(ament_cmake_copyright_FOUND TRUE)
|
||||
# the following line skips cpplint (only works in a git repo)
|
||||
# comment the line when this package is in a git repo and when
|
||||
# a copyright and license is added to all source files
|
||||
set(ament_cmake_cpplint_FOUND TRUE)
|
||||
ament_lint_auto_find_test_dependencies()
|
||||
endif()
|
||||
|
||||
ament_package()
|
||||
@@ -1,56 +0,0 @@
|
||||
// Copyright 2016 Open Source Robotics Foundation, Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
|
||||
#include "rclcpp/rclcpp.hpp"
|
||||
#include "std_msgs/msg/string.hpp"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
/* This example creates a subclass of Node and uses std::bind() to register a
|
||||
* member function as a callback from the timer. */
|
||||
|
||||
class MinimalPublisher : public rclcpp::Node
|
||||
{
|
||||
public:
|
||||
MinimalPublisher()
|
||||
: Node("minimal_publisher"), count_(0)
|
||||
{
|
||||
publisher_ = this->create_publisher<std_msgs::msg::String>("topic", 10);
|
||||
timer_ = this->create_wall_timer(
|
||||
500ms, std::bind(&MinimalPublisher::timer_callback, this));
|
||||
}
|
||||
|
||||
private:
|
||||
void timer_callback()
|
||||
{
|
||||
auto message = std_msgs::msg::String();
|
||||
message.data = "Hello, world! " + std::to_string(count_++);
|
||||
RCLCPP_INFO(this->get_logger(), "Publishing: '%s'", message.data.c_str());
|
||||
publisher_->publish(message);
|
||||
}
|
||||
rclcpp::TimerBase::SharedPtr timer_;
|
||||
rclcpp::Publisher<std_msgs::msg::String>::SharedPtr publisher_;
|
||||
size_t count_;
|
||||
};
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
rclcpp::init(argc, argv);
|
||||
rclcpp::spin(std::make_shared<MinimalPublisher>());
|
||||
rclcpp::shutdown();
|
||||
return 0;
|
||||
}
|
||||
@@ -1,45 +0,0 @@
|
||||
// Copyright 2016 Open Source Robotics Foundation, Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "rclcpp/rclcpp.hpp"
|
||||
#include "std_msgs/msg/string.hpp"
|
||||
using std::placeholders::_1;
|
||||
|
||||
class MinimalSubscriber : public rclcpp::Node
|
||||
{
|
||||
public:
|
||||
MinimalSubscriber()
|
||||
: Node("minimal_subscriber")
|
||||
{
|
||||
subscription_ = this->create_subscription<std_msgs::msg::String>(
|
||||
"topic", 10, std::bind(&MinimalSubscriber::topic_callback, this, _1));
|
||||
}
|
||||
|
||||
private:
|
||||
void topic_callback(const std_msgs::msg::String::SharedPtr msg) const
|
||||
{
|
||||
RCLCPP_INFO(this->get_logger(), "I heard: '%s'", msg->data.c_str());
|
||||
}
|
||||
rclcpp::Subscription<std_msgs::msg::String>::SharedPtr subscription_;
|
||||
};
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
rclcpp::init(argc, argv);
|
||||
rclcpp::spin(std::make_shared<MinimalSubscriber>());
|
||||
rclcpp::shutdown();
|
||||
return 0;
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.8)
|
||||
project(drone_sensors)
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
endif()
|
||||
|
||||
# find dependencies
|
||||
find_package(ament_cmake REQUIRED)
|
||||
# uncomment the following section in order to fill in
|
||||
# further dependencies manually.
|
||||
# find_package(<dependency> REQUIRED)
|
||||
find_package(rclcpp REQUIRED)
|
||||
find_package(std_msgs REQUIRED)
|
||||
|
||||
# add executable so that the node can be run with ros2 run
|
||||
add_executable(height_sensor src/height_sensor.cpp)
|
||||
ament_target_dependencies(height_sensor rclcpp std_msgs)
|
||||
|
||||
# add install targets section so ros2 run can find the executable
|
||||
install(TARGETS
|
||||
height_sensor
|
||||
DESTINATION lib/${PROJECT_NAME})
|
||||
|
||||
if(BUILD_TESTING)
|
||||
find_package(ament_lint_auto REQUIRED)
|
||||
# the following line skips the linter which checks for copyrights
|
||||
# comment the line when a copyright and license is added to all source files
|
||||
set(ament_cmake_copyright_FOUND TRUE)
|
||||
# the following line skips cpplint (only works in a git repo)
|
||||
# comment the line when this package is in a git repo and when
|
||||
# a copyright and license is added to all source files
|
||||
set(ament_cmake_cpplint_FOUND TRUE)
|
||||
ament_lint_auto_find_test_dependencies()
|
||||
endif()
|
||||
|
||||
ament_package()
|
||||
@@ -1,39 +0,0 @@
|
||||
#include <chrono> //time measurement
|
||||
|
||||
#include "rclcpp/rclcpp.hpp"
|
||||
#include "std_msgs/msg/string.hpp"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
class HeightSensorPublisher : public rclcpp::Node
|
||||
{
|
||||
public:
|
||||
HeightSensorPublisher() : Node("height_sensor_publisher")
|
||||
{
|
||||
publisher_ = this->create_publisher<std_msgs::msg::String>("height_sensor", 10);
|
||||
timer_ = this->create_wall_timer(
|
||||
500ms, std::bind(&HeightSensorPublisher::timer_callback, this));
|
||||
|
||||
}
|
||||
private:
|
||||
void timer_callback()
|
||||
{
|
||||
auto message = std_msgs::msg::String();
|
||||
message.data = "Hello heigth sensor!";
|
||||
RCLCPP_INFO(this->get_logger(), "Publishing: %s", message.data.c_str());
|
||||
publisher_->publish(message);
|
||||
}
|
||||
rclcpp::TimerBase::SharedPtr timer_;
|
||||
rclcpp::Publisher<std_msgs::msg::String>::SharedPtr publisher_;
|
||||
};
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
rclcpp::init(argc,argv);
|
||||
rclcpp::spin(std::make_shared<HeightSensorPublisher>());
|
||||
rclcpp::shutdown();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
9
install_mavproxy.sh
Normal file
9
install_mavproxy.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
sudo apt-get update
|
||||
sudo apt-get upgrade
|
||||
sudo apt-get install python3-pip
|
||||
sudo apt-get install python3-dev
|
||||
sud0 apt-get install screen python3-wxgtk4.0 python-lxml
|
||||
sudo pip install -U future
|
||||
sudo pip install -U pyserial
|
||||
sudo pip install -U dronekit
|
||||
sudo pip install -U MAVProxy
|
||||
@@ -1,35 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.8)
|
||||
project(my_package)
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
endif()
|
||||
|
||||
# find dependencies
|
||||
find_package(ament_cmake REQUIRED)
|
||||
# uncomment the following section in order to fill in
|
||||
# further dependencies manually.
|
||||
# find_package(<dependency> REQUIRED)
|
||||
|
||||
add_executable(my_node src/my_node.cpp)
|
||||
target_include_directories(my_node PUBLIC
|
||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||
$<INSTALL_INTERFACE:include>)
|
||||
target_compile_features(my_node PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17
|
||||
|
||||
install(TARGETS my_node
|
||||
DESTINATION lib/${PROJECT_NAME})
|
||||
|
||||
if(BUILD_TESTING)
|
||||
find_package(ament_lint_auto REQUIRED)
|
||||
# the following line skips the linter which checks for copyrights
|
||||
# comment the line when a copyright and license is added to all source files
|
||||
set(ament_cmake_copyright_FOUND TRUE)
|
||||
# the following line skips cpplint (only works in a git repo)
|
||||
# comment the line when this package is in a git repo and when
|
||||
# a copyright and license is added to all source files
|
||||
set(ament_cmake_cpplint_FOUND TRUE)
|
||||
ament_lint_auto_find_test_dependencies()
|
||||
endif()
|
||||
|
||||
ament_package()
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>my_package</name>
|
||||
<version>0.0.0</version>
|
||||
<description>TODO: Package description</description>
|
||||
<maintainer email="ubuntu@todo.todo">ubuntu</maintainer>
|
||||
<license>TODO: License declaration</license>
|
||||
|
||||
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||
|
||||
<test_depend>ament_lint_auto</test_depend>
|
||||
<test_depend>ament_lint_common</test_depend>
|
||||
|
||||
<export>
|
||||
<build_type>ament_cmake</build_type>
|
||||
</export>
|
||||
</package>
|
||||
@@ -1,10 +0,0 @@
|
||||
#include <cstdio>
|
||||
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
(void) argc;
|
||||
(void) argv;
|
||||
|
||||
printf("hello world my_package package\n");
|
||||
return 0;
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
def main():
|
||||
print('Hi from my_package_py.')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>my_package_py</name>
|
||||
<version>0.0.0</version>
|
||||
<description>TODO: Package description</description>
|
||||
<maintainer email="ubuntu@todo.todo">ubuntu</maintainer>
|
||||
<license>TODO: License declaration</license>
|
||||
|
||||
<test_depend>ament_copyright</test_depend>
|
||||
<test_depend>ament_flake8</test_depend>
|
||||
<test_depend>ament_pep257</test_depend>
|
||||
<test_depend>python3-pytest</test_depend>
|
||||
|
||||
<export>
|
||||
<build_type>ament_python</build_type>
|
||||
</export>
|
||||
</package>
|
||||
@@ -1,4 +0,0 @@
|
||||
[develop]
|
||||
script_dir=$base/lib/my_package_py
|
||||
[install]
|
||||
install_scripts=$base/lib/my_package_py
|
||||
@@ -1,26 +0,0 @@
|
||||
from setuptools import setup
|
||||
|
||||
package_name = 'my_package_py'
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
version='0.0.0',
|
||||
packages=[package_name],
|
||||
data_files=[
|
||||
('share/ament_index/resource_index/packages',
|
||||
['resource/' + package_name]),
|
||||
('share/' + package_name, ['package.xml']),
|
||||
],
|
||||
install_requires=['setuptools'],
|
||||
zip_safe=True,
|
||||
maintainer='ubuntu',
|
||||
maintainer_email='ubuntu@todo.todo',
|
||||
description='TODO: Package description',
|
||||
license='TODO: License declaration',
|
||||
tests_require=['pytest'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'my_node_py = my_package_py.my_node_py:main'
|
||||
],
|
||||
},
|
||||
)
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_copyright.main import main
|
||||
import pytest
|
||||
|
||||
|
||||
# Remove the `skip` decorator once the source file(s) have a copyright header
|
||||
@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.')
|
||||
@pytest.mark.copyright
|
||||
@pytest.mark.linter
|
||||
def test_copyright():
|
||||
rc = main(argv=['.', 'test'])
|
||||
assert rc == 0, 'Found errors'
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 2017 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_flake8.main import main_with_errors
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.flake8
|
||||
@pytest.mark.linter
|
||||
def test_flake8():
|
||||
rc, errors = main_with_errors(argv=[])
|
||||
assert rc == 0, \
|
||||
'Found %d code style errors / warnings:\n' % len(errors) + \
|
||||
'\n'.join(errors)
|
||||
@@ -1,23 +0,0 @@
|
||||
# Copyright 2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_pep257.main import main
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.linter
|
||||
@pytest.mark.pep257
|
||||
def test_pep257():
|
||||
rc = main(argv=['.', 'test'])
|
||||
assert rc == 0, 'Found code style errors / warnings'
|
||||
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>py_pubsub</name>
|
||||
<version>0.0.0</version>
|
||||
<description>Example of publisher/subscriber nodes in Python</description>
|
||||
<maintainer email="ubuntu@todo.todo">ubuntu</maintainer>
|
||||
<license>Apache License 2.0</license>
|
||||
|
||||
<exec_depend>rclpy</exec_depend>
|
||||
<exec_depend>std_msgs</exec_depend>
|
||||
|
||||
<test_depend>ament_copyright</test_depend>
|
||||
<test_depend>ament_flake8</test_depend>
|
||||
<test_depend>ament_pep257</test_depend>
|
||||
<test_depend>python3-pytest</test_depend>
|
||||
|
||||
<export>
|
||||
<build_type>ament_python</build_type>
|
||||
</export>
|
||||
</package>
|
||||
@@ -1,53 +0,0 @@
|
||||
# Copyright 2016 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import rclpy
|
||||
from rclpy.node import Node
|
||||
|
||||
from std_msgs.msg import String
|
||||
|
||||
|
||||
class MinimalPublisher(Node):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__('minimal_publisher')
|
||||
self.publisher_ = self.create_publisher(String, 'topic', 10)
|
||||
timer_period = 0.5 # seconds
|
||||
self.timer = self.create_timer(timer_period, self.timer_callback)
|
||||
self.i = 0
|
||||
|
||||
def timer_callback(self):
|
||||
msg = String()
|
||||
msg.data = 'Hello World: %d' % self.i
|
||||
self.publisher_.publish(msg)
|
||||
self.get_logger().info('Publishing: "%s"' % msg.data)
|
||||
self.i += 1
|
||||
|
||||
|
||||
def main(args=None):
|
||||
rclpy.init(args=args)
|
||||
|
||||
minimal_publisher = MinimalPublisher()
|
||||
|
||||
rclpy.spin(minimal_publisher)
|
||||
|
||||
# Destroy the node explicitly
|
||||
# (optional - otherwise it will be done automatically
|
||||
# when the garbage collector destroys the node object)
|
||||
minimal_publisher.destroy_node()
|
||||
rclpy.shutdown()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 2016 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import rclpy
|
||||
from rclpy.node import Node
|
||||
|
||||
from std_msgs.msg import String
|
||||
|
||||
|
||||
class MinimalSubscriber(Node):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__('minimal_subscriber')
|
||||
self.subscription = self.create_subscription(
|
||||
String,
|
||||
'topic',
|
||||
self.listener_callback,
|
||||
10)
|
||||
self.subscription # prevent unused variable warning
|
||||
|
||||
def listener_callback(self, msg):
|
||||
self.get_logger().info('I heard: "%s"' % msg.data)
|
||||
|
||||
|
||||
def main(args=None):
|
||||
rclpy.init(args=args)
|
||||
|
||||
minimal_subscriber = MinimalSubscriber()
|
||||
|
||||
rclpy.spin(minimal_subscriber)
|
||||
|
||||
# Destroy the node explicitly
|
||||
# (optional - otherwise it will be done automatically
|
||||
# when the garbage collector destroys the node object)
|
||||
minimal_subscriber.destroy_node()
|
||||
rclpy.shutdown()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -1,4 +0,0 @@
|
||||
[develop]
|
||||
script_dir=$base/lib/py_pubsub
|
||||
[install]
|
||||
install_scripts=$base/lib/py_pubsub
|
||||
@@ -1,27 +0,0 @@
|
||||
from setuptools import setup
|
||||
|
||||
package_name = 'py_pubsub'
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
version='0.0.0',
|
||||
packages=[package_name],
|
||||
data_files=[
|
||||
('share/ament_index/resource_index/packages',
|
||||
['resource/' + package_name]),
|
||||
('share/' + package_name, ['package.xml']),
|
||||
],
|
||||
install_requires=['setuptools'],
|
||||
zip_safe=True,
|
||||
maintainer='ubuntu',
|
||||
maintainer_email='ubuntu@todo.todo',
|
||||
description='Example of publisher/subscriber nodes in Python',
|
||||
license='Apache License 2.0',
|
||||
tests_require=['pytest'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'talker = py_pubsub.publisher_member_function:main',
|
||||
'listener = py_pubsub.subscriber_member_function:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_copyright.main import main
|
||||
import pytest
|
||||
|
||||
|
||||
# Remove the `skip` decorator once the source file(s) have a copyright header
|
||||
@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.')
|
||||
@pytest.mark.copyright
|
||||
@pytest.mark.linter
|
||||
def test_copyright():
|
||||
rc = main(argv=['.', 'test'])
|
||||
assert rc == 0, 'Found errors'
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 2017 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_flake8.main import main_with_errors
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.flake8
|
||||
@pytest.mark.linter
|
||||
def test_flake8():
|
||||
rc, errors = main_with_errors(argv=[])
|
||||
assert rc == 0, \
|
||||
'Found %d code style errors / warnings:\n' % len(errors) + \
|
||||
'\n'.join(errors)
|
||||
@@ -1,23 +0,0 @@
|
||||
# Copyright 2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ament_pep257.main import main
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.linter
|
||||
@pytest.mark.pep257
|
||||
def test_pep257():
|
||||
rc = main(argv=['.', 'test'])
|
||||
assert rc == 0, 'Found code style errors / warnings'
|
||||
3742
script-output-14-04-23-1046.txt
Normal file
3742
script-output-14-04-23-1046.txt
Normal file
File diff suppressed because one or more lines are too long
7
source_dirs.txt
Normal file
7
source_dirs.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
source /opt/ros/humble/setup.bash && echo "sourced ros humble setup script"
|
||||
export ROS_DOMAIN_ID=0 && echo "set ROS_DOMAIN_ID to ${ROS_DOMAIN_ID}"
|
||||
source /usr/share/colcon_cd/function/colcon_cd.sh && echo "sourced colcon cd script"
|
||||
export _colcon_cd_root=/opt/ros/humble/ && echo "set _colcon_cd_root to ${_colcon_cd_root}"
|
||||
source /usr/share/colcon_argcomplete/hook/colcon-argcomplete.bash && echo "sourced colcon argcomplete script"
|
||||
export RMW_IMPLEMENTATION=rmw_fastrtps_cpp && echo "set RMW_IMPLEMENTATION to ${RMW_IMPLEMENTATION}"
|
||||
. ~/ros2_ws/install/setup.bash && echo "ran ROS install script from $PWD"
|
||||
61
src/beacon_positioning/CMakeLists.txt
Normal file
61
src/beacon_positioning/CMakeLists.txt
Normal file
@@ -0,0 +1,61 @@
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
project(beacon_positioning)
|
||||
|
||||
# Default to C99
|
||||
if(NOT CMAKE_C_STANDARD)
|
||||
set(CMAKE_C_STANDARD 99)
|
||||
endif()
|
||||
|
||||
# Default to C++14
|
||||
if(NOT CMAKE_CXX_STANDARD)
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
endif()
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
endif()
|
||||
|
||||
# find dependencies
|
||||
find_package(ament_cmake REQUIRED)
|
||||
# uncomment the following section in order to fill in
|
||||
# further dependencies manually.
|
||||
# find_package(<dependency> REQUIRED)
|
||||
find_package(rclcpp REQUIRED)
|
||||
find_package(std_msgs REQUIRED)
|
||||
find_package(positioning_systems_api REQUIRED)
|
||||
find_package(rosidl_default_generators REQUIRED)
|
||||
find_package(beacon_positioning REQUIRED)
|
||||
|
||||
rosidl_generate_interfaces(${PROJECT_NAME}
|
||||
"msg/TrackerPosition.msg" # message for tracker position
|
||||
)
|
||||
|
||||
add_executable(tracker_position src/tracker_position.cpp)
|
||||
ament_target_dependencies(tracker_position rclcpp std_msgs beacon_positioning)
|
||||
|
||||
target_link_libraries(tracker_position
|
||||
positioning_systems_api::serial_communication
|
||||
positioning_systems_api::rtls_driver
|
||||
)
|
||||
|
||||
install(TARGETS tracker_position
|
||||
DESTINATION lib/${PROJECT_NAME})
|
||||
|
||||
install(
|
||||
DIRECTORY launch
|
||||
DESTINATION share/${PROJECT_NAME}
|
||||
)
|
||||
|
||||
|
||||
if(BUILD_TESTING)
|
||||
find_package(ament_lint_auto REQUIRED)
|
||||
# the following line skips the linter which checks for copyrights
|
||||
# uncomment the line when a copyright and license is not present in all source files
|
||||
#set(ament_cmake_copyright_FOUND TRUE)
|
||||
# the following line skips cpplint (only works in a git repo)
|
||||
# uncomment the line when this package is not in a git repo
|
||||
#set(ament_cmake_cpplint_FOUND TRUE)
|
||||
ament_lint_auto_find_test_dependencies()
|
||||
endif()
|
||||
|
||||
ament_package()
|
||||
27
src/beacon_positioning/launch/beacon_positioning_launch.py
Normal file
27
src/beacon_positioning/launch/beacon_positioning_launch.py
Normal file
@@ -0,0 +1,27 @@
|
||||
from launch import LaunchDescription
|
||||
from launch_ros.actions import Node
|
||||
|
||||
def generate_launch_description():
|
||||
return LaunchDescription([
|
||||
Node(
|
||||
package="beacon_positioning",
|
||||
executable="tracker_position",
|
||||
name="beacon_tracker_0",
|
||||
namespace="tracker0",
|
||||
parameters=[
|
||||
{"tracker_serial_port": "/dev/ttyUSB0"}
|
||||
]
|
||||
),
|
||||
Node(
|
||||
package="beacon_positioning",
|
||||
executable="tracker_position",
|
||||
name="beacon_tracker_1",
|
||||
namespace="tracker1",
|
||||
output="screen",
|
||||
emulate_tty=True,
|
||||
parameters=[
|
||||
{"tracker_serial_port": "/dev/ttyUSB1"}
|
||||
]
|
||||
)
|
||||
|
||||
])
|
||||
5
src/beacon_positioning/msg/TrackerPosition.msg
Normal file
5
src/beacon_positioning/msg/TrackerPosition.msg
Normal file
@@ -0,0 +1,5 @@
|
||||
int32 id
|
||||
int64 x_pos
|
||||
int64 y_pos
|
||||
int64 z_pos
|
||||
int64[4] anchor_distances
|
||||
24
src/beacon_positioning/package.xml
Normal file
24
src/beacon_positioning/package.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>beacon_positioning</name>
|
||||
<version>0.0.0</version>
|
||||
<description>ROS 2 package to read the Terabee Robot Positioning System beacons positions</description>
|
||||
<maintainer email="semmer99@gmail.com">sem</maintainer>
|
||||
<license>Apache License 2.0</license>
|
||||
|
||||
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||
<buildtool_depend>rosidl_default_generators</buildtool_depend>
|
||||
<exec_depend>rosidl_default_runtime</exec_depend>
|
||||
<depend>rclcpp</depend>
|
||||
<depend>std_msgs</depend>
|
||||
|
||||
<member_of_group>rosidl_interface_packages</member_of_group>
|
||||
|
||||
<test_depend>ament_lint_auto</test_depend>
|
||||
<test_depend>ament_lint_common</test_depend>
|
||||
|
||||
<export>
|
||||
<build_type>ament_cmake</build_type>
|
||||
</export>
|
||||
</package>
|
||||
183
src/beacon_positioning/src/tracker_position.cpp
Normal file
183
src/beacon_positioning/src/tracker_position.cpp
Normal file
@@ -0,0 +1,183 @@
|
||||
#include <cstdio>
|
||||
#include <chrono>
|
||||
|
||||
#include "rclcpp/rclcpp.hpp"
|
||||
#include "std_msgs/msg/string.hpp"
|
||||
#include "beacon_positioning/msg/tracker_position.hpp"
|
||||
|
||||
#include "rtls_driver/rtls_driver.hpp"
|
||||
|
||||
// from the example: https://github.com/Terabee/positioning_systems_api/blob/master/examples/rtls_tracker_example.cpp
|
||||
#include "serial_communication/serial.hpp"
|
||||
|
||||
#define TRACKER_0_PORT "/dev/ttyUSB0"
|
||||
#define TRACKER_1_PORT "/dev/ttyUSB1"
|
||||
|
||||
#define TRACKER_0_PRIORITY 0
|
||||
#define TRACKER_1_PRIORITY 1
|
||||
using SerialInterface = terabee::serial_communication::Serial;
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
class BeaconPositioningPublisher : public rclcpp::Node
|
||||
{
|
||||
public:
|
||||
BeaconPositioningPublisher() : Node("beacon_positioning")
|
||||
{
|
||||
|
||||
this->declare_parameter("tracker_serial_port", "/dev/ttyUSB0");
|
||||
|
||||
std::string serial_port_name = this->get_parameter("tracker_serial_port").as_string();
|
||||
|
||||
RCLCPP_INFO(this->get_logger(), "serial port is %s\n", serial_port_name.c_str());
|
||||
|
||||
serial_port = std::make_shared<SerialInterface>("/dev/ttyUSB0");
|
||||
serial_port->setBaudrate(115200);
|
||||
serial_port->setTimeout(800ms);
|
||||
|
||||
//rtls_device = terabee::RtlsDevice(serial_port);
|
||||
|
||||
RCLCPP_INFO(this->get_logger(), "Opening serial port of tracker!");
|
||||
serial_port->open();
|
||||
|
||||
if (!serial_port->isOpen())
|
||||
{
|
||||
RCLCPP_ERROR(this->get_logger(), "Failed to open serial port!");
|
||||
return;
|
||||
}
|
||||
|
||||
publisher_ = this->create_publisher<beacon_positioning::msg::TrackerPosition>("beacon_positioning", 10);
|
||||
timer_ = this->create_wall_timer(
|
||||
500ms, std::bind(&BeaconPositioningPublisher::timer_callback, this));
|
||||
}
|
||||
|
||||
void setup_rtlsdevice(terabee::RtlsDevice *rtls_device, int priority, int label, int update_time, int network_id, bool long_message)
|
||||
{
|
||||
rtls_device->disableTrackerStream();
|
||||
serial_port->flushInput();
|
||||
rtls_device->setDevice(terabee::RtlsDevice::device_type::tracker, priority);
|
||||
rtls_device->setLabel(label);
|
||||
rtls_device->setUpdateTime(update_time);
|
||||
rtls_device->setNetworkId(network_id);
|
||||
if (long_message)
|
||||
{
|
||||
rtls_device->setTrackerMessageLong();
|
||||
}
|
||||
else
|
||||
{
|
||||
rtls_device->setTrackerMessageShort();
|
||||
}
|
||||
rtls_device->enableLED();
|
||||
rtls_device->requestConfig();
|
||||
device_configuration = rtls_device->getConfig();
|
||||
|
||||
rtls_device->enableTrackerStream();
|
||||
|
||||
RCLCPP_INFO(this->get_logger(), "Tracker configured");
|
||||
}
|
||||
|
||||
std::shared_ptr<terabee::serial_communication::ISerial> get_serial_port()
|
||||
{
|
||||
return serial_port;
|
||||
}
|
||||
|
||||
void publish(beacon_positioning::msg::TrackerPosition msg)
|
||||
{
|
||||
publisher_->publish(msg);
|
||||
}
|
||||
|
||||
void set_tracker_id(int id)
|
||||
{
|
||||
if (id >= 0) {
|
||||
tracker_id = id;
|
||||
}
|
||||
}
|
||||
|
||||
int get_tracker_id()
|
||||
{
|
||||
return tracker_id;
|
||||
}
|
||||
|
||||
private:
|
||||
void timer_callback()
|
||||
|
||||
{
|
||||
// auto message = std_msgs::msg::String();
|
||||
// message.data = "Hello beacons!";
|
||||
// RCLCPP_INFO(this->get_logger(), "Publishing: '%s'", message.data.c_str());
|
||||
// publisher_->publish(message);
|
||||
}
|
||||
|
||||
rclcpp::TimerBase::SharedPtr timer_; // timer to trigger the
|
||||
rclcpp::Publisher<beacon_positioning::msg::TrackerPosition>::SharedPtr publisher_; // pointer to publisher object
|
||||
int tracker_id;
|
||||
|
||||
// terabee tower evo variables
|
||||
std::shared_ptr<terabee::serial_communication::ISerial> serial_port; // serial port for communicating with tracker
|
||||
terabee::RtlsDevice::config_t device_configuration;
|
||||
terabee::RtlsDevice::OnTrackerDataCallback tracker_data_callback_;
|
||||
terabee::RtlsDevice::tracker_msg_t tracker_msg;
|
||||
//terabee::RtlsDevice rtls_device;
|
||||
};
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
printf("starting tracker node of beacon_positioning package\n");
|
||||
|
||||
rclcpp::init(argc, argv);
|
||||
rclcpp::executors::MultiThreadedExecutor executor;
|
||||
std::shared_ptr<BeaconPositioningPublisher> node = std::make_shared<BeaconPositioningPublisher>();
|
||||
executor.add_node(node);
|
||||
terabee::RtlsDevice rtls_device(node->get_serial_port());
|
||||
if (node->get_parameter("tracker_serial_port").as_string().compare(TRACKER_0_PORT))
|
||||
{
|
||||
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 0");
|
||||
node->set_tracker_id(0);
|
||||
node->setup_rtlsdevice(&rtls_device, 0, 0, 50, 0, true);
|
||||
} else
|
||||
{
|
||||
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 1");
|
||||
node->set_tracker_id(1);
|
||||
node->setup_rtlsdevice(&rtls_device, 1, 1, 50, 0, true);
|
||||
}
|
||||
|
||||
rtls_device.registerOnDistanceDataCaptureCallback([&node](const terabee::RtlsDevice::tracker_msg_t &tracker_msg)
|
||||
{
|
||||
if (tracker_msg.is_valid_position)
|
||||
{
|
||||
RCLCPP_INFO(node->get_logger(), "x = %f, y = %f, z = %f", tracker_msg.tracker_position_xyz.at(0), tracker_msg.tracker_position_xyz.at(1), tracker_msg.tracker_position_xyz.at(2));
|
||||
for (int i = 0; i < tracker_msg.anchors_data.size(); i++)
|
||||
{
|
||||
RCLCPP_INFO(node->get_logger(), "anchor number= %d, distance = %d, x = %d, y = %d, z = %d", tracker_msg.anchors_data[i].number, tracker_msg.anchors_data[i].distance, tracker_msg.anchors_data[i].pos_x, tracker_msg.anchors_data[i].pos_y, tracker_msg.anchors_data[i].pos_z);
|
||||
}
|
||||
RCLCPP_INFO(node->get_logger(), "");
|
||||
auto message = beacon_positioning::msg::TrackerPosition();
|
||||
message.id = node->get_tracker_id();
|
||||
message.x_pos = tracker_msg.tracker_position_xyz.at(0);
|
||||
message.y_pos = tracker_msg.tracker_position_xyz.at(1);
|
||||
message.z_pos = tracker_msg.tracker_position_xyz.at(2);
|
||||
message.anchor_distances = {0, 0, 0, 0};
|
||||
for (int i = 0; i < tracker_msg.anchors_data.size(); i++)
|
||||
{
|
||||
message.anchor_distances[i] = tracker_msg.anchors_data[i].distance;
|
||||
}
|
||||
|
||||
node->publish(message);
|
||||
}
|
||||
else
|
||||
{
|
||||
RCLCPP_ERROR(node->get_logger(), "invalid tracker position");
|
||||
// RCLCPP_INFO(node->get_logger(), "x = %f, y = %f, z = %f", tracker_msg.tracker_position_xyz[0], tracker_msg.tracker_position_xyz[1], tracker_msg.tracker_position_xyz[2]);
|
||||
} });
|
||||
|
||||
rtls_device.startReadingStream();
|
||||
executor.spin();
|
||||
rclcpp::shutdown();
|
||||
|
||||
rtls_device.stopReadingStream();
|
||||
|
||||
return node->get_serial_port()->close() ? 0 : -1;
|
||||
}
|
||||
1
src/build/.built_by
Normal file
1
src/build/.built_by
Normal file
@@ -0,0 +1 @@
|
||||
colcon
|
||||
715
src/build/beacon_positioning/CMakeCache.txt
Normal file
715
src/build/beacon_positioning/CMakeCache.txt
Normal file
@@ -0,0 +1,715 @@
|
||||
# This is the CMakeCache file.
|
||||
# For build in directory: /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
# It was generated by CMake: /usr/bin/cmake
|
||||
# You can edit this file to change values found and used by cmake.
|
||||
# If you do not want to change any of the values, simply exit the editor.
|
||||
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||
# The syntax for the file is as follows:
|
||||
# KEY:TYPE=VALUE
|
||||
# KEY is the name of a variable in the cache.
|
||||
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||
# VALUE is the current value for the KEY.
|
||||
|
||||
########################
|
||||
# EXTERNAL cache entries
|
||||
########################
|
||||
|
||||
//Generate environment files in the CMAKE_INSTALL_PREFIX
|
||||
AMENT_CMAKE_ENVIRONMENT_GENERATION:BOOL=OFF
|
||||
|
||||
//Generate environment files in the package share folder
|
||||
AMENT_CMAKE_ENVIRONMENT_PACKAGE_GENERATION:BOOL=ON
|
||||
|
||||
//Generate marker file containing the parent prefix path
|
||||
AMENT_CMAKE_ENVIRONMENT_PARENT_PREFIX_PATH_GENERATION:BOOL=ON
|
||||
|
||||
//Replace the CMake install command with a custom implementation
|
||||
// using symlinks instead of copying resources
|
||||
AMENT_CMAKE_SYMLINK_INSTALL:BOOL=OFF
|
||||
|
||||
//Generate an uninstall target to revert the effects of the install
|
||||
// step
|
||||
AMENT_CMAKE_UNINSTALL_TARGET:BOOL=ON
|
||||
|
||||
//The path where test results are generated
|
||||
AMENT_TEST_RESULTS_DIR:PATH=/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results
|
||||
|
||||
//Build the testing tree.
|
||||
BUILD_TESTING:BOOL=ON
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||
|
||||
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||
// MinSizeRel ...
|
||||
CMAKE_BUILD_TYPE:STRING=
|
||||
|
||||
//Enable/Disable color output during build.
|
||||
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||
|
||||
//CXX compiler
|
||||
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||
|
||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
|
||||
|
||||
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
|
||||
|
||||
//Flags used by the CXX compiler during all build types.
|
||||
CMAKE_CXX_FLAGS:STRING=
|
||||
|
||||
//Flags used by the CXX compiler during DEBUG builds.
|
||||
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the CXX compiler during RELEASE builds.
|
||||
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//C compiler
|
||||
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||
|
||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
|
||||
|
||||
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||
// for the GCC compiler
|
||||
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
|
||||
|
||||
//Flags used by the C compiler during all build types.
|
||||
CMAKE_C_FLAGS:STRING=
|
||||
|
||||
//Flags used by the C compiler during DEBUG builds.
|
||||
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the C compiler during MINSIZEREL builds.
|
||||
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the C compiler during RELEASE builds.
|
||||
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||
|
||||
//Flags used by the linker during all build types.
|
||||
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during DEBUG builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during MINSIZEREL builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during RELEASE builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Enable/Disable output of compile commands during generation.
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
|
||||
|
||||
//Install path prefix, prepended onto install directories.
|
||||
CMAKE_INSTALL_PREFIX:PATH=/home/ubuntu/ros2_ws/src/install/beacon_positioning
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// all build types.
|
||||
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// DEBUG builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// MINSIZEREL builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// RELEASE builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// RELWITHDEBINFO builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_NAME:STATIC=beacon_positioning
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during all build types.
|
||||
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during DEBUG builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during MINSIZEREL builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during RELEASE builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during RELWITHDEBINFO builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//If set, runtime paths are not added when installing shared libraries,
|
||||
// but are added when building.
|
||||
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||
|
||||
//If set, runtime paths are not added when using shared libraries.
|
||||
CMAKE_SKIP_RPATH:BOOL=NO
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during all build types.
|
||||
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during DEBUG builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during MINSIZEREL builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during RELEASE builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during RELWITHDEBINFO builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||
|
||||
//If this value is on, makefiles will be generated without the
|
||||
// .SILENT directive, and all commands will be echoed to the console
|
||||
// during the make. This is useful for debugging only. With Visual
|
||||
// Studio IDE projects all commands are done without /nologo.
|
||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||
|
||||
//Path to a library.
|
||||
FastCDR_LIBRARY_DEBUG:FILEPATH=FastCDR_LIBRARY_DEBUG-NOTFOUND
|
||||
|
||||
//Path to a library.
|
||||
FastCDR_LIBRARY_RELEASE:FILEPATH=/opt/ros/foxy/lib/libfastcdr.so
|
||||
|
||||
//Path to a file.
|
||||
FastRTPS_INCLUDE_DIR:PATH=/opt/ros/foxy/include
|
||||
|
||||
//Path to a library.
|
||||
FastRTPS_LIBRARY_DEBUG:FILEPATH=FastRTPS_LIBRARY_DEBUG-NOTFOUND
|
||||
|
||||
//Path to a library.
|
||||
FastRTPS_LIBRARY_RELEASE:FILEPATH=/opt/ros/foxy/lib/libfastrtps.so
|
||||
|
||||
//Path to a library.
|
||||
OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/aarch64-linux-gnu/libcrypto.so
|
||||
|
||||
//Path to a file.
|
||||
OPENSSL_INCLUDE_DIR:PATH=/usr/include
|
||||
|
||||
//Path to a library.
|
||||
OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/aarch64-linux-gnu/libssl.so
|
||||
|
||||
//pkg-config executable
|
||||
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
||||
|
||||
//Path to a program.
|
||||
PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3
|
||||
|
||||
//Specify specific Python version to use ('major.minor' or 'major')
|
||||
PYTHON_VERSION:STRING=
|
||||
|
||||
//Name of the computer/site where compile is being run
|
||||
SITE:STRING=ubuntu
|
||||
|
||||
//The directory containing a CMake configuration file for TinyXML2.
|
||||
TinyXML2_DIR:PATH=TinyXML2_DIR-NOTFOUND
|
||||
|
||||
//Path to a library.
|
||||
_lib:FILEPATH=/opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_fastrtps_cpp.so
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake.
|
||||
ament_cmake_DIR:PATH=/opt/ros/foxy/share/ament_cmake/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_copyright.
|
||||
ament_cmake_copyright_DIR:PATH=/opt/ros/foxy/share/ament_cmake_copyright/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_core.
|
||||
ament_cmake_core_DIR:PATH=/opt/ros/foxy/share/ament_cmake_core/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_cppcheck.
|
||||
ament_cmake_cppcheck_DIR:PATH=/opt/ros/foxy/share/ament_cmake_cppcheck/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_cpplint.
|
||||
ament_cmake_cpplint_DIR:PATH=/opt/ros/foxy/share/ament_cmake_cpplint/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_definitions.
|
||||
ament_cmake_export_definitions_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_definitions/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_dependencies.
|
||||
ament_cmake_export_dependencies_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_include_directories.
|
||||
ament_cmake_export_include_directories_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_interfaces.
|
||||
ament_cmake_export_interfaces_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_libraries.
|
||||
ament_cmake_export_libraries_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_libraries/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_link_flags.
|
||||
ament_cmake_export_link_flags_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_export_targets.
|
||||
ament_cmake_export_targets_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_targets/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_flake8.
|
||||
ament_cmake_flake8_DIR:PATH=/opt/ros/foxy/share/ament_cmake_flake8/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_include_directories.
|
||||
ament_cmake_include_directories_DIR:PATH=/opt/ros/foxy/share/ament_cmake_include_directories/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_libraries.
|
||||
ament_cmake_libraries_DIR:PATH=/opt/ros/foxy/share/ament_cmake_libraries/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_lint_cmake.
|
||||
ament_cmake_lint_cmake_DIR:PATH=/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_pep257.
|
||||
ament_cmake_pep257_DIR:PATH=/opt/ros/foxy/share/ament_cmake_pep257/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_python.
|
||||
ament_cmake_python_DIR:PATH=/opt/ros/foxy/share/ament_cmake_python/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_target_dependencies.
|
||||
ament_cmake_target_dependencies_DIR:PATH=/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_test.
|
||||
ament_cmake_test_DIR:PATH=/opt/ros/foxy/share/ament_cmake_test/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_uncrustify.
|
||||
ament_cmake_uncrustify_DIR:PATH=/opt/ros/foxy/share/ament_cmake_uncrustify/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_version.
|
||||
ament_cmake_version_DIR:PATH=/opt/ros/foxy/share/ament_cmake_version/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_cmake_xmllint.
|
||||
ament_cmake_xmllint_DIR:PATH=/opt/ros/foxy/share/ament_cmake_xmllint/cmake
|
||||
|
||||
//Path to a program.
|
||||
ament_copyright_BIN:FILEPATH=/opt/ros/foxy/bin/ament_copyright
|
||||
|
||||
//Path to a program.
|
||||
ament_cppcheck_BIN:FILEPATH=/opt/ros/foxy/bin/ament_cppcheck
|
||||
|
||||
//Path to a program.
|
||||
ament_cpplint_BIN:FILEPATH=/opt/ros/foxy/bin/ament_cpplint
|
||||
|
||||
//The directory containing a CMake configuration file for ament_lint_auto.
|
||||
ament_lint_auto_DIR:PATH=/opt/ros/foxy/share/ament_lint_auto/cmake
|
||||
|
||||
//Path to a program.
|
||||
ament_lint_cmake_BIN:FILEPATH=/opt/ros/foxy/bin/ament_lint_cmake
|
||||
|
||||
//The directory containing a CMake configuration file for ament_lint_common.
|
||||
ament_lint_common_DIR:PATH=/opt/ros/foxy/share/ament_lint_common/cmake
|
||||
|
||||
//Path to a program.
|
||||
ament_uncrustify_BIN:FILEPATH=/opt/ros/foxy/bin/ament_uncrustify
|
||||
|
||||
//Path to a program.
|
||||
ament_xmllint_BIN:FILEPATH=/opt/ros/foxy/bin/ament_xmllint
|
||||
|
||||
//Value Computed by CMake
|
||||
beacon_positioning_BINARY_DIR:STATIC=/home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
//Value Computed by CMake
|
||||
beacon_positioning_SOURCE_DIR:STATIC=/home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
//The directory containing a CMake configuration file for builtin_interfaces.
|
||||
builtin_interfaces_DIR:PATH=/opt/ros/foxy/share/builtin_interfaces/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for fastcdr.
|
||||
fastcdr_DIR:PATH=/opt/ros/foxy/lib/cmake/fastcdr
|
||||
|
||||
//The directory containing a CMake configuration file for fastrtps.
|
||||
fastrtps_DIR:PATH=/opt/ros/foxy/share/fastrtps/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for fastrtps_cmake_module.
|
||||
fastrtps_cmake_module_DIR:PATH=/opt/ros/foxy/share/fastrtps_cmake_module/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for foonathan_memory.
|
||||
foonathan_memory_DIR:PATH=/opt/ros/foxy/lib/foonathan_memory/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for libstatistics_collector.
|
||||
libstatistics_collector_DIR:PATH=/opt/ros/foxy/share/libstatistics_collector/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for libyaml_vendor.
|
||||
libyaml_vendor_DIR:PATH=/opt/ros/foxy/share/libyaml_vendor/cmake
|
||||
|
||||
//Path to a library.
|
||||
pkgcfg_lib__OPENSSL_crypto:FILEPATH=/usr/lib/aarch64-linux-gnu/libcrypto.so
|
||||
|
||||
//Path to a library.
|
||||
pkgcfg_lib__OPENSSL_ssl:FILEPATH=/usr/lib/aarch64-linux-gnu/libssl.so
|
||||
|
||||
//The directory containing a CMake configuration file for rcl.
|
||||
rcl_DIR:PATH=/opt/ros/foxy/share/rcl/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rcl_interfaces.
|
||||
rcl_interfaces_DIR:PATH=/opt/ros/foxy/share/rcl_interfaces/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rcl_logging_spdlog.
|
||||
rcl_logging_spdlog_DIR:PATH=/opt/ros/foxy/share/rcl_logging_spdlog/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rcl_yaml_param_parser.
|
||||
rcl_yaml_param_parser_DIR:PATH=/opt/ros/foxy/share/rcl_yaml_param_parser/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rclcpp.
|
||||
rclcpp_DIR:PATH=/opt/ros/foxy/share/rclcpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rcpputils.
|
||||
rcpputils_DIR:PATH=/opt/ros/foxy/share/rcpputils/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rcutils.
|
||||
rcutils_DIR:PATH=/opt/ros/foxy/share/rcutils/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rmw.
|
||||
rmw_DIR:PATH=/opt/ros/foxy/share/rmw/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rmw_implementation.
|
||||
rmw_implementation_DIR:PATH=/opt/ros/foxy/share/rmw_implementation/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rmw_implementation_cmake.
|
||||
rmw_implementation_cmake_DIR:PATH=/opt/ros/foxy/share/rmw_implementation_cmake/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosgraph_msgs.
|
||||
rosgraph_msgs_DIR:PATH=/opt/ros/foxy/share/rosgraph_msgs/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_adapter.
|
||||
rosidl_adapter_DIR:PATH=/opt/ros/foxy/share/rosidl_adapter/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_cmake.
|
||||
rosidl_cmake_DIR:PATH=/opt/ros/foxy/share/rosidl_cmake/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_default_runtime.
|
||||
rosidl_default_runtime_DIR:PATH=/opt/ros/foxy/share/rosidl_default_runtime/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_generator_c.
|
||||
rosidl_generator_c_DIR:PATH=/opt/ros/foxy/share/rosidl_generator_c/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_generator_cpp.
|
||||
rosidl_generator_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_generator_cpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_runtime_c.
|
||||
rosidl_runtime_c_DIR:PATH=/opt/ros/foxy/share/rosidl_runtime_c/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_runtime_cpp.
|
||||
rosidl_runtime_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_runtime_cpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_c.
|
||||
rosidl_typesupport_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_c/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_cpp.
|
||||
rosidl_typesupport_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_fastrtps_c.
|
||||
rosidl_typesupport_fastrtps_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_fastrtps_cpp.
|
||||
rosidl_typesupport_fastrtps_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_interface.
|
||||
rosidl_typesupport_interface_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_interface/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_introspection_c.
|
||||
rosidl_typesupport_introspection_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for rosidl_typesupport_introspection_cpp.
|
||||
rosidl_typesupport_introspection_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for spdlog.
|
||||
spdlog_DIR:PATH=/usr/lib/aarch64-linux-gnu/cmake/spdlog
|
||||
|
||||
//The directory containing a CMake configuration file for spdlog_vendor.
|
||||
spdlog_vendor_DIR:PATH=/opt/ros/foxy/share/spdlog_vendor/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for statistics_msgs.
|
||||
statistics_msgs_DIR:PATH=/opt/ros/foxy/share/statistics_msgs/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for std_msgs.
|
||||
std_msgs_DIR:PATH=/opt/ros/foxy/share/std_msgs/cmake
|
||||
|
||||
//The directory containing a CMake configuration file for tracetools.
|
||||
tracetools_DIR:PATH=/opt/ros/foxy/share/tracetools/cmake
|
||||
|
||||
//Path to a program.
|
||||
xmllint_BIN:FILEPATH=/usr/bin/xmllint
|
||||
|
||||
//The directory containing a CMake configuration file for yaml.
|
||||
yaml_DIR:PATH=/opt/ros/foxy/cmake
|
||||
|
||||
|
||||
########################
|
||||
# INTERNAL cache entries
|
||||
########################
|
||||
|
||||
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_AR
|
||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||
//This is the directory where this CMakeCache.txt was created
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
//Major version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||
//Minor version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MINOR_VERSION:INTERNAL=16
|
||||
//Patch version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
|
||||
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
//Path to CMake executable.
|
||||
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||
//Path to cpack program executable.
|
||||
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||
//Path to ctest program executable.
|
||||
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||
//Executable file format
|
||||
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||
//Name of external makefile project generator.
|
||||
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||
//Name of generator.
|
||||
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||
//Generator instance identifier.
|
||||
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||
//Name of generator platform.
|
||||
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||
//Name of generator toolset.
|
||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=
|
||||
//Have library pthreads
|
||||
CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
|
||||
//Have library pthread
|
||||
CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
|
||||
//Have include pthread.h
|
||||
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
|
||||
//Source directory with the top level CMakeLists.txt file for this
|
||||
// project
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
//Install .so files without execute permission.
|
||||
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_LINKER
|
||||
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_NM
|
||||
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||
//number of local generators
|
||||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||
//Platform information initialized
|
||||
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_RANLIB
|
||||
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_READELF
|
||||
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||
//Path to CMake installation.
|
||||
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STRIP
|
||||
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||
//uname command
|
||||
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
//Details about finding FastRTPS
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_FastRTPS:INTERNAL=[/opt/ros/foxy/include][/opt/ros/foxy/lib/libfastrtps.so;/opt/ros/foxy/lib/libfastcdr.so][v()]
|
||||
//Details about finding OpenSSL
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib/aarch64-linux-gnu/libcrypto.so][/usr/include][c ][v1.1.1f()]
|
||||
//Details about finding PythonInterp
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python3][v3.8.10(3)]
|
||||
//Details about finding Threads
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||
//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY
|
||||
OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENSSL_INCLUDE_DIR
|
||||
OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENSSL_SSL_LIBRARY
|
||||
OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
||||
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: PYTHON_EXECUTABLE
|
||||
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||
_OPENSSL_CFLAGS:INTERNAL=
|
||||
_OPENSSL_CFLAGS_I:INTERNAL=
|
||||
_OPENSSL_CFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_FOUND:INTERNAL=1
|
||||
_OPENSSL_INCLUDEDIR:INTERNAL=/usr/include
|
||||
_OPENSSL_INCLUDE_DIRS:INTERNAL=
|
||||
_OPENSSL_LDFLAGS:INTERNAL=-lssl;-lcrypto
|
||||
_OPENSSL_LDFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_LIBDIR:INTERNAL=/usr/lib/aarch64-linux-gnu
|
||||
_OPENSSL_LIBRARIES:INTERNAL=ssl;crypto
|
||||
_OPENSSL_LIBRARY_DIRS:INTERNAL=
|
||||
_OPENSSL_LIBS:INTERNAL=
|
||||
_OPENSSL_LIBS_L:INTERNAL=
|
||||
_OPENSSL_LIBS_OTHER:INTERNAL=
|
||||
_OPENSSL_LIBS_PATHS:INTERNAL=
|
||||
_OPENSSL_MODULE_NAME:INTERNAL=openssl
|
||||
_OPENSSL_PREFIX:INTERNAL=/usr
|
||||
_OPENSSL_STATIC_CFLAGS:INTERNAL=
|
||||
_OPENSSL_STATIC_CFLAGS_I:INTERNAL=
|
||||
_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL=
|
||||
_OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=
|
||||
_OPENSSL_STATIC_LDFLAGS:INTERNAL=-lssl;-lcrypto;-ldl;-pthread
|
||||
_OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
|
||||
_OPENSSL_STATIC_LIBDIR:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;crypto;dl
|
||||
_OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_L:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_OTHER:INTERNAL=
|
||||
_OPENSSL_STATIC_LIBS_PATHS:INTERNAL=
|
||||
_OPENSSL_VERSION:INTERNAL=1.1.1f
|
||||
_OPENSSL_openssl_INCLUDEDIR:INTERNAL=
|
||||
_OPENSSL_openssl_LIBDIR:INTERNAL=
|
||||
_OPENSSL_openssl_PREFIX:INTERNAL=
|
||||
_OPENSSL_openssl_VERSION:INTERNAL=
|
||||
__pkg_config_arguments__OPENSSL:INTERNAL=QUIET;openssl
|
||||
__pkg_config_checked__OPENSSL:INTERNAL=1
|
||||
//ADVANCED property for variable: pkgcfg_lib__OPENSSL_crypto
|
||||
pkgcfg_lib__OPENSSL_crypto-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: pkgcfg_lib__OPENSSL_ssl
|
||||
pkgcfg_lib__OPENSSL_ssl-ADVANCED:INTERNAL=1
|
||||
prefix_result:INTERNAL=/usr/lib/aarch64-linux-gnu
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_VERSION "9.4.0")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
|
||||
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||
|
||||
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-9")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||
set(CMAKE_C_COMPILER_LOADED 1)
|
||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||
set(CMAKE_COMPILER_IS_MINGW )
|
||||
set(CMAKE_COMPILER_IS_CYGWIN )
|
||||
if(CMAKE_COMPILER_IS_CYGWIN)
|
||||
set(CYGWIN 1)
|
||||
set(UNIX 1)
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||
|
||||
if(CMAKE_COMPILER_IS_MINGW)
|
||||
set(MINGW 1)
|
||||
endif()
|
||||
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||
set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||
|
||||
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/9/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include")
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/9;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
@@ -0,0 +1,88 @@
|
||||
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "9.4.0")
|
||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
|
||||
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
|
||||
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||
|
||||
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-9")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||
set(CMAKE_COMPILER_IS_MINGW )
|
||||
set(CMAKE_COMPILER_IS_CYGWIN )
|
||||
if(CMAKE_COMPILER_IS_CYGWIN)
|
||||
set(CYGWIN 1)
|
||||
set(UNIX 1)
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||
|
||||
if(CMAKE_COMPILER_IS_MINGW)
|
||||
set(MINGW 1)
|
||||
endif()
|
||||
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
|
||||
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
|
||||
foreach (lang C OBJC OBJCXX)
|
||||
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||
endforeach()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||
|
||||
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9;/usr/include/aarch64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/aarch64-linux-gnu/9/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/9;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin
Executable file
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin
Executable file
Binary file not shown.
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin
Executable file
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin
Executable file
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_HOST_SYSTEM "Linux-5.4.0-1082-raspi")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-1082-raspi")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_SYSTEM "Linux-5.4.0-1082-raspi")
|
||||
set(CMAKE_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_SYSTEM_VERSION "5.4.0-1082-raspi")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "aarch64")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
|
||||
set(CMAKE_SYSTEM_LOADED 1)
|
||||
@@ -0,0 +1,671 @@
|
||||
#ifdef __cplusplus
|
||||
# error "A C++ compiler has been selected for C."
|
||||
#endif
|
||||
|
||||
#if defined(__18CXX)
|
||||
# define ID_VOID_MAIN
|
||||
#endif
|
||||
#if defined(__CLASSIC_C__)
|
||||
/* cv-qualifiers did not exist in K&R C */
|
||||
# define const
|
||||
# define volatile
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_C)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_C >= 0x5100
|
||||
/* __SUNPRO_C = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_cc)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_cc = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||
|
||||
#elif defined(__DECC)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECC_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||
|
||||
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__ibmxl__) && defined(__clang__)
|
||||
# define COMPILER_ID "XLClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# define COMPILER_ID "GHS"
|
||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||
# ifdef __GHS_VERSION_NUMBER
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__TINYC__)
|
||||
# define COMPILER_ID "TinyCC"
|
||||
|
||||
#elif defined(__BCC__)
|
||||
# define COMPILER_ID "Bruce"
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||
# define COMPILER_ID "ARMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VISUALDSPVERSION__)
|
||||
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__) && defined(__ICCARM__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||
# define COMPILER_ID "SDCC"
|
||||
# if defined(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||
# else
|
||||
/* SDCC = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||
# endif
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#elif defined(__INTEGRITY)
|
||||
# if defined(INT_178B)
|
||||
# define PLATFORM_ID "Integrity178"
|
||||
|
||||
# else /* regular Integrity */
|
||||
# define PLATFORM_ID "Integrity"
|
||||
# endif
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__ICCRH850__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# elif defined(__ICCRL78__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__ICCRISCV__)
|
||||
# define ARCHITECTURE_ID "RISCV"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# elif defined(__ICC430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__ICCV850__)
|
||||
# define ARCHITECTURE_ID "V850"
|
||||
|
||||
# elif defined(__ICC8051__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# if defined(__PPC64__)
|
||||
# define ARCHITECTURE_ID "PPC64"
|
||||
|
||||
# elif defined(__ppc__)
|
||||
# define ARCHITECTURE_ID "PPC"
|
||||
|
||||
# elif defined(__ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__x86_64__)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(__i386__)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
|
||||
#if !defined(__STDC__)
|
||||
# if (defined(_MSC_VER) && !defined(__clang__)) \
|
||||
|| (defined(__ibmxl__) || defined(__IBMC__))
|
||||
# define C_DIALECT "90"
|
||||
# else
|
||||
# define C_DIALECT
|
||||
# endif
|
||||
#elif __STDC_VERSION__ >= 201000L
|
||||
# define C_DIALECT "11"
|
||||
#elif __STDC_VERSION__ >= 199901L
|
||||
# define C_DIALECT "99"
|
||||
#else
|
||||
# define C_DIALECT "90"
|
||||
#endif
|
||||
const char* info_language_dialect_default =
|
||||
"INFO" ":" "dialect_default[" C_DIALECT "]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
#ifdef ID_VOID_MAIN
|
||||
void main() {}
|
||||
#else
|
||||
# if defined(__CLASSIC_C__)
|
||||
int main(argc, argv) int argc; char *argv[];
|
||||
# else
|
||||
int main(int argc, char* argv[])
|
||||
# endif
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
require += info_arch[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_dialect_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
#endif
|
||||
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdC/a.out
Executable file
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdC/a.out
Executable file
Binary file not shown.
@@ -0,0 +1,660 @@
|
||||
/* This source file must have a .cpp extension so that all C++ compilers
|
||||
recognize the extension without flags. Borland does not know .cxx for
|
||||
example. */
|
||||
#ifndef __cplusplus
|
||||
# error "A C compiler has been selected for C++."
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__COMO__)
|
||||
# define COMPILER_ID "Comeau"
|
||||
/* __COMO_VERSION__ = VRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
|
||||
|
||||
#elif defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_CC)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_CC >= 0x5100
|
||||
/* __SUNPRO_CC = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_aCC)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_aCC = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||
|
||||
#elif defined(__DECCXX)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECCXX_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||
|
||||
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__ibmxl__) && defined(__clang__)
|
||||
# define COMPILER_ID "XLClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# define COMPILER_ID "GHS"
|
||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||
# ifdef __GHS_VERSION_NUMBER
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||
# define COMPILER_ID "ARMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# if defined(__GNUC__)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VISUALDSPVERSION__)
|
||||
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__) && defined(__ICCARM__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#elif defined(__INTEGRITY)
|
||||
# if defined(INT_178B)
|
||||
# define PLATFORM_ID "Integrity178"
|
||||
|
||||
# else /* regular Integrity */
|
||||
# define PLATFORM_ID "Integrity"
|
||||
# endif
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__ICCRH850__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# elif defined(__ICCRL78__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__ICCRISCV__)
|
||||
# define ARCHITECTURE_ID "RISCV"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# elif defined(__ICC430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__ICCV850__)
|
||||
# define ARCHITECTURE_ID "V850"
|
||||
|
||||
# elif defined(__ICC8051__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# if defined(__PPC64__)
|
||||
# define ARCHITECTURE_ID "PPC64"
|
||||
|
||||
# elif defined(__ppc__)
|
||||
# define ARCHITECTURE_ID "PPC"
|
||||
|
||||
# elif defined(__ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__x86_64__)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(__i386__)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
|
||||
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
|
||||
# if defined(__INTEL_CXX11_MODE__)
|
||||
# if defined(__cpp_aggregate_nsdmi)
|
||||
# define CXX_STD 201402L
|
||||
# else
|
||||
# define CXX_STD 201103L
|
||||
# endif
|
||||
# else
|
||||
# define CXX_STD 199711L
|
||||
# endif
|
||||
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||
# define CXX_STD _MSVC_LANG
|
||||
#else
|
||||
# define CXX_STD __cplusplus
|
||||
#endif
|
||||
|
||||
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
|
||||
#if CXX_STD > 201703L
|
||||
"20"
|
||||
#elif CXX_STD >= 201703L
|
||||
"17"
|
||||
#elif CXX_STD >= 201402L
|
||||
"14"
|
||||
#elif CXX_STD >= 201103L
|
||||
"11"
|
||||
#else
|
||||
"98"
|
||||
#endif
|
||||
"]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_dialect_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdCXX/a.out
Executable file
BIN
src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdCXX/a.out
Executable file
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/ubuntu/ros2_ws/src/beacon_positioning")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/ubuntu/ros2_ws/src/build/beacon_positioning")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||
58
src/build/beacon_positioning/CMakeFiles/CMakeError.log
Normal file
58
src/build/beacon_positioning/CMakeFiles/CMakeError.log
Normal file
@@ -0,0 +1,58 @@
|
||||
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_49eb3/fast && /usr/bin/make -f CMakeFiles/cmTC_49eb3.dir/build.make CMakeFiles/cmTC_49eb3.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_49eb3.dir/src.c.o
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_49eb3.dir/src.c.o -c /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp/src.c
|
||||
Linking C executable cmTC_49eb3
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_49eb3.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_49eb3.dir/src.c.o -o cmTC_49eb3
|
||||
/usr/bin/ld: CMakeFiles/cmTC_49eb3.dir/src.c.o: in function `main':
|
||||
src.c:(.text+0x48): undefined reference to `pthread_create'
|
||||
/usr/bin/ld: src.c:(.text+0x50): undefined reference to `pthread_detach'
|
||||
/usr/bin/ld: src.c:(.text+0x5c): undefined reference to `pthread_join'
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_49eb3.dir/build.make:87: cmTC_49eb3] Error 1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_49eb3/fast] Error 2
|
||||
|
||||
|
||||
Source file was:
|
||||
#include <pthread.h>
|
||||
|
||||
void* test_func(void* data)
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
pthread_t thread;
|
||||
pthread_create(&thread, NULL, test_func, NULL);
|
||||
pthread_detach(thread);
|
||||
pthread_join(thread, NULL);
|
||||
pthread_atfork(NULL, NULL, NULL);
|
||||
pthread_exit(NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Determining if the function pthread_create exists in the pthreads failed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_41c6a/fast && /usr/bin/make -f CMakeFiles/cmTC_41c6a.dir/build.make CMakeFiles/cmTC_41c6a.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_41c6a.dir/CheckFunctionExists.c.o
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_41c6a.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
||||
Linking C executable cmTC_41c6a
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_41c6a.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_41c6a.dir/CheckFunctionExists.c.o -o cmTC_41c6a -lpthreads
|
||||
/usr/bin/ld: cannot find -lpthreads
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_41c6a.dir/build.make:87: cmTC_41c6a] Error 1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_41c6a/fast] Error 2
|
||||
|
||||
|
||||
|
||||
477
src/build/beacon_positioning/CMakeFiles/CMakeOutput.log
Normal file
477
src/build/beacon_positioning/CMakeFiles/CMakeOutput.log
Normal file
@@ -0,0 +1,477 @@
|
||||
The system is: Linux - 5.4.0-1082-raspi - aarch64
|
||||
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||
Compiler: /usr/bin/cc
|
||||
Build flags:
|
||||
Id flags:
|
||||
|
||||
The output was:
|
||||
0
|
||||
|
||||
|
||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||
|
||||
The C compiler identification is GNU, found in "/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdC/a.out"
|
||||
|
||||
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||
Compiler: /usr/bin/c++
|
||||
Build flags:
|
||||
Id flags:
|
||||
|
||||
The output was:
|
||||
0
|
||||
|
||||
|
||||
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||
|
||||
The CXX compiler identification is GNU, found in "/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/3.16.3/CompilerIdCXX/a.out"
|
||||
|
||||
Determining if the C compiler works passed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_9c5b1/fast && /usr/bin/make -f CMakeFiles/cmTC_9c5b1.dir/build.make CMakeFiles/cmTC_9c5b1.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_9c5b1.dir/testCCompiler.c.o
|
||||
/usr/bin/cc -o CMakeFiles/cmTC_9c5b1.dir/testCCompiler.c.o -c /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||
Linking C executable cmTC_9c5b1
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c5b1.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_9c5b1.dir/testCCompiler.c.o -o cmTC_9c5b1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Detecting C compiler ABI info compiled with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_99013/fast && /usr/bin/make -f CMakeFiles/cmTC_99013.dir/build.make CMakeFiles/cmTC_99013.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o
|
||||
/usr/bin/cc -v -o CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/cc
|
||||
Target: aarch64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cchWLEkc.s
|
||||
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)
|
||||
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
|
||||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"
|
||||
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/include-fixed"
|
||||
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/../../../../aarch64-linux-gnu/include"
|
||||
#include "..." search starts here:
|
||||
#include <...> search starts here:
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/include
|
||||
/usr/local/include
|
||||
/usr/include/aarch64-linux-gnu
|
||||
/usr/include
|
||||
End of search list.
|
||||
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)
|
||||
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
|
||||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
Compiler executable checksum: 6a3864a8c3fe8bbb972fb5dbcb1f67d4
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'
|
||||
as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o /tmp/cchWLEkc.s
|
||||
GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
|
||||
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'
|
||||
Linking C executable cmTC_99013
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_99013.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -v CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -o cmTC_99013
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/cc
|
||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper
|
||||
Target: aarch64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
|
||||
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_99013' '-mlittle-endian' '-mabi=lp64'
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfCRiLH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_99013 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_99013' '-mlittle-endian' '-mabi=lp64'
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Parsed C implicit include dir info from above output: rv=done
|
||||
found start of include info
|
||||
found start of implicit include info
|
||||
add: [/usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
add: [/usr/local/include]
|
||||
add: [/usr/include/aarch64-linux-gnu]
|
||||
add: [/usr/include]
|
||||
end of search list found
|
||||
collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/9/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
||||
collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu]
|
||||
collapse include dir [/usr/include] ==> [/usr/include]
|
||||
implicit include dirs: [/usr/lib/gcc/aarch64-linux-gnu/9/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include]
|
||||
|
||||
|
||||
Parsed C implicit link information from above output:
|
||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||
ignore line: [Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_99013/fast && /usr/bin/make -f CMakeFiles/cmTC_99013.dir/build.make CMakeFiles/cmTC_99013.dir/build]
|
||||
ignore line: [make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp']
|
||||
ignore line: [Building C object CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o]
|
||||
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||
ignore line: [Target: aarch64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cchWLEkc.s]
|
||||
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)]
|
||||
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
|
||||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"]
|
||||
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/include-fixed"]
|
||||
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/../../../../aarch64-linux-gnu/include"]
|
||||
ignore line: [#include "..." search starts here:]
|
||||
ignore line: [#include <...> search starts here:]
|
||||
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
ignore line: [ /usr/local/include]
|
||||
ignore line: [ /usr/include/aarch64-linux-gnu]
|
||||
ignore line: [ /usr/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)]
|
||||
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
|
||||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [Compiler executable checksum: 6a3864a8c3fe8bbb972fb5dbcb1f67d4]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o /tmp/cchWLEkc.s]
|
||||
ignore line: [GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [Linking C executable cmTC_99013]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_99013.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -o cmTC_99013 ]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper]
|
||||
ignore line: [Target: aarch64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_99013' '-mlittle-endian' '-mabi=lp64']
|
||||
link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfCRiLH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_99013 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o]
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/collect2] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so] ==> ignore
|
||||
arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/ccfCRiLH.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [--build-id] ==> ignore
|
||||
arg [--eh-frame-hdr] ==> ignore
|
||||
arg [--hash-style=gnu] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-dynamic-linker] ==> ignore
|
||||
arg [/lib/ld-linux-aarch64.so.1] ==> ignore
|
||||
arg [-X] ==> ignore
|
||||
arg [-EL] ==> ignore
|
||||
arg [-maarch64linux] ==> ignore
|
||||
arg [--fix-cortex-a53-843419] ==> ignore
|
||||
arg [-pie] ==> ignore
|
||||
arg [-znow] ==> ignore
|
||||
arg [-zrelro] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_99013] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o] ==> ignore
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib]
|
||||
arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu]
|
||||
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||
arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu]
|
||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..]
|
||||
arg [CMakeFiles/cmTC_99013.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--push-state] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [--pop-state] ==> ignore
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--push-state] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [--pop-state] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] ==> ignore
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9] ==> [/usr/lib/gcc/aarch64-linux-gnu/9]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
|
||||
collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/lib/../lib] ==> [/lib]
|
||||
collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> [/usr/lib]
|
||||
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
||||
implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/9;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib]
|
||||
implicit fwks: []
|
||||
|
||||
|
||||
Determining if the CXX compiler works passed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_5d645/fast && /usr/bin/make -f CMakeFiles/cmTC_5d645.dir/build.make CMakeFiles/cmTC_5d645.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building CXX object CMakeFiles/cmTC_5d645.dir/testCXXCompiler.cxx.o
|
||||
/usr/bin/c++ -o CMakeFiles/cmTC_5d645.dir/testCXXCompiler.cxx.o -c /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
||||
Linking CXX executable cmTC_5d645
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5d645.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ CMakeFiles/cmTC_5d645.dir/testCXXCompiler.cxx.o -o cmTC_5d645
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Detecting CXX compiler ABI info compiled with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_4a710/fast && /usr/bin/make -f CMakeFiles/cmTC_4a710.dir/build.make CMakeFiles/cmTC_4a710.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building CXX object CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o
|
||||
/usr/bin/c++ -v -o CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/c++
|
||||
Target: aarch64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cciEyy9a.s
|
||||
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)
|
||||
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
|
||||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/9"
|
||||
ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"
|
||||
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/include-fixed"
|
||||
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/../../../../aarch64-linux-gnu/include"
|
||||
#include "..." search starts here:
|
||||
#include <...> search starts here:
|
||||
/usr/include/c++/9
|
||||
/usr/include/aarch64-linux-gnu/c++/9
|
||||
/usr/include/c++/9/backward
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/include
|
||||
/usr/local/include
|
||||
/usr/include/aarch64-linux-gnu
|
||||
/usr/include
|
||||
End of search list.
|
||||
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)
|
||||
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
|
||||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
Compiler executable checksum: 4d0ffd0faaba59e19a04d931506edddd
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'
|
||||
as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o /tmp/cciEyy9a.s
|
||||
GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
|
||||
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'
|
||||
Linking CXX executable cmTC_4a710
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4a710.dir/link.txt --verbose=1
|
||||
/usr/bin/c++ -v CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4a710
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/c++
|
||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper
|
||||
Target: aarch64-linux-gnu
|
||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
|
||||
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4a710' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'
|
||||
/usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7qIrWE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_4a710 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4a710' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Parsed CXX implicit include dir info from above output: rv=done
|
||||
found start of include info
|
||||
found start of implicit include info
|
||||
add: [/usr/include/c++/9]
|
||||
add: [/usr/include/aarch64-linux-gnu/c++/9]
|
||||
add: [/usr/include/c++/9/backward]
|
||||
add: [/usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
add: [/usr/local/include]
|
||||
add: [/usr/include/aarch64-linux-gnu]
|
||||
add: [/usr/include]
|
||||
end of search list found
|
||||
collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9]
|
||||
collapse include dir [/usr/include/aarch64-linux-gnu/c++/9] ==> [/usr/include/aarch64-linux-gnu/c++/9]
|
||||
collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward]
|
||||
collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/9/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
||||
collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu]
|
||||
collapse include dir [/usr/include] ==> [/usr/include]
|
||||
implicit include dirs: [/usr/include/c++/9;/usr/include/aarch64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/aarch64-linux-gnu/9/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include]
|
||||
|
||||
|
||||
Parsed CXX implicit link information from above output:
|
||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||
ignore line: [Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_4a710/fast && /usr/bin/make -f CMakeFiles/cmTC_4a710.dir/build.make CMakeFiles/cmTC_4a710.dir/build]
|
||||
ignore line: [make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp']
|
||||
ignore line: [Building CXX object CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o]
|
||||
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||
ignore line: [Target: aarch64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cciEyy9a.s]
|
||||
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)]
|
||||
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
|
||||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/9"]
|
||||
ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"]
|
||||
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/include-fixed"]
|
||||
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/9/../../../../aarch64-linux-gnu/include"]
|
||||
ignore line: [#include "..." search starts here:]
|
||||
ignore line: [#include <...> search starts here:]
|
||||
ignore line: [ /usr/include/c++/9]
|
||||
ignore line: [ /usr/include/aarch64-linux-gnu/c++/9]
|
||||
ignore line: [ /usr/include/c++/9/backward]
|
||||
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/include]
|
||||
ignore line: [ /usr/local/include]
|
||||
ignore line: [ /usr/include/aarch64-linux-gnu]
|
||||
ignore line: [ /usr/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)]
|
||||
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
|
||||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [Compiler executable checksum: 4d0ffd0faaba59e19a04d931506edddd]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o /tmp/cciEyy9a.s]
|
||||
ignore line: [GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64']
|
||||
ignore line: [Linking CXX executable cmTC_4a710]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4a710.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4a710 ]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper]
|
||||
ignore line: [Target: aarch64-linux-gnu]
|
||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu]
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4a710' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64']
|
||||
link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7qIrWE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_4a710 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o]
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/collect2] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so] ==> ignore
|
||||
arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/cc7qIrWE.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [--build-id] ==> ignore
|
||||
arg [--eh-frame-hdr] ==> ignore
|
||||
arg [--hash-style=gnu] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
arg [-dynamic-linker] ==> ignore
|
||||
arg [/lib/ld-linux-aarch64.so.1] ==> ignore
|
||||
arg [-X] ==> ignore
|
||||
arg [-EL] ==> ignore
|
||||
arg [-maarch64linux] ==> ignore
|
||||
arg [--fix-cortex-a53-843419] ==> ignore
|
||||
arg [-pie] ==> ignore
|
||||
arg [-znow] ==> ignore
|
||||
arg [-zrelro] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_4a710] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o] ==> ignore
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib]
|
||||
arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu]
|
||||
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||
arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu]
|
||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||
arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..]
|
||||
arg [CMakeFiles/cmTC_4a710.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||
arg [-lstdc++] ==> lib [stdc++]
|
||||
arg [-lm] ==> lib [m]
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lgcc_s] ==> lib [gcc_s]
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o] ==> ignore
|
||||
arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] ==> ignore
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9] ==> [/usr/lib/gcc/aarch64-linux-gnu/9]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
|
||||
collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/lib/../lib] ==> [/lib]
|
||||
collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> [/usr/lib]
|
||||
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
|
||||
implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/9;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib]
|
||||
implicit fwks: []
|
||||
|
||||
|
||||
Determining if the include file pthread.h exists passed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_05fd1/fast && /usr/bin/make -f CMakeFiles/cmTC_05fd1.dir/build.make CMakeFiles/cmTC_05fd1.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_05fd1.dir/CheckIncludeFile.c.o
|
||||
/usr/bin/cc -o CMakeFiles/cmTC_05fd1.dir/CheckIncludeFile.c.o -c /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp/CheckIncludeFile.c
|
||||
Linking C executable cmTC_05fd1
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05fd1.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_05fd1.dir/CheckIncludeFile.c.o -o cmTC_05fd1
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Determining if the function pthread_create exists in the pthread passed with the following output:
|
||||
Change Dir: /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_551e3/fast && /usr/bin/make -f CMakeFiles/cmTC_551e3.dir/build.make CMakeFiles/cmTC_551e3.dir/build
|
||||
make[1]: Entering directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_551e3.dir/CheckFunctionExists.c.o
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_551e3.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
||||
Linking C executable cmTC_551e3
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_551e3.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_551e3.dir/CheckFunctionExists.c.o -o cmTC_551e3 -lpthread
|
||||
make[1]: Leaving directory '/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# Hashes of file build rules.
|
||||
283e688963c88060d388578998766d42 CMakeFiles/beacon_positioning_uninstall
|
||||
646
src/build/beacon_positioning/CMakeFiles/Makefile.cmake
Normal file
646
src/build/beacon_positioning/CMakeFiles/Makefile.cmake
Normal file
@@ -0,0 +1,646 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# The generator used is:
|
||||
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||
|
||||
# The top level Makefile was generated from the following files:
|
||||
set(CMAKE_MAKEFILE_DEPENDS
|
||||
"CMakeCache.txt"
|
||||
"/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt"
|
||||
"/home/ubuntu/ros2_ws/src/beacon_positioning/package.xml"
|
||||
"CMakeFiles/3.16.3/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeSystem.cmake"
|
||||
"ament_cmake_core/package.cmake"
|
||||
"ament_cmake_package_templates/templates.cmake"
|
||||
"/opt/ros/foxy/cmake/yamlConfig.cmake"
|
||||
"/opt/ros/foxy/cmake/yamlConfigVersion.cmake"
|
||||
"/opt/ros/foxy/cmake/yamlTargets-none.cmake"
|
||||
"/opt/ros/foxy/cmake/yamlTargets.cmake"
|
||||
"/opt/ros/foxy/lib/cmake/fastcdr/fastcdr-config-version.cmake"
|
||||
"/opt/ros/foxy/lib/cmake/fastcdr/fastcdr-config.cmake"
|
||||
"/opt/ros/foxy/lib/cmake/fastcdr/fastcdr-targets-none.cmake"
|
||||
"/opt/ros/foxy/lib/cmake/fastcdr/fastcdr-targets.cmake"
|
||||
"/opt/ros/foxy/lib/foonathan_memory/cmake/foonathan_memory-config-none.cmake"
|
||||
"/opt/ros/foxy/lib/foonathan_memory/cmake/foonathan_memory-config-version.cmake"
|
||||
"/opt/ros/foxy/lib/foonathan_memory/cmake/foonathan_memory-config.cmake"
|
||||
"/opt/ros/foxy/lib/python3.8/site-packages/ament_package/template/package_level/local_setup.bash.in"
|
||||
"/opt/ros/foxy/lib/python3.8/site-packages/ament_package/template/package_level/local_setup.sh.in"
|
||||
"/opt/ros/foxy/lib/python3.8/site-packages/ament_package/template/package_level/local_setup.zsh.in"
|
||||
"/opt/ros/foxy/share/ament_cmake/cmake/ament_cmakeConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake/cmake/ament_cmakeConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyright-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyrightConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyrightConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyright_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_copyright.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_core-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_coreConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_environment-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_environment_hooks-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_index-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_package_templates-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_symlink_install-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/all.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package_xml.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_register_extension.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/assert_file_exists.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/list_append_unique.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/normalize_path.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/package_xml_2_cmake.py"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/python.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/stamp.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/string_ends_with.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/templates/nameConfig-version.cmake.in"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/core/templates/nameConfig.cmake.in"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment/ament_cmake_environment_package_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment/ament_generate_environment.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/ament_cmake_environment_hooks_package_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/ament_environment_hooks.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/ament_generate_package_environment.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_cmake_index_package_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_get_prefix_path.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_get_resource.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_get_resources.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_has_resource.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_register_package.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/index/ament_index_register_resource.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/package_templates/templates_2_cmake.py"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in"
|
||||
"/opt/ros/foxy/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target_append_uninstall_code.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cppcheck.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplint-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplintConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplintConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplint_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cpplint.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitions-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_definitions/cmake/ament_export_definitions.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake/ament_export_dependencies.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake/ament_export_include_directories.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfaces-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake/ament_export_interfaces.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_libraries/cmake/ament_export_libraries.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_libraries/cmake/ament_export_library_names.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flags-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake/ament_export_link_flags.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_targets/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_export_targets/cmake/ament_export_targets.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_flake8/cmake/ament_cmake_flake8-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_flake8/cmake/ament_cmake_flake8_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_flake8/cmake/ament_flake8.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_include_directories/cmake/ament_cmake_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_include_directories/cmake/ament_include_directories_order.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_cmake_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_libraries_deduplicate.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_libraries_pack_build_configuration.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_libraries/cmake/ament_libraries_unpack_build_configuration.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_pep257/cmake/ament_cmake_pep257-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_pep257/cmake/ament_cmake_pep257_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_pep257/cmake/ament_pep257.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_python/cmake/ament_cmake_python-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_python/cmake/ament_cmake_pythonConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_python/cmake/ament_cmake_pythonConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_python/cmake/ament_python_install_module.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_python/cmake/ament_python_install_package.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake/ament_get_recursive_properties.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake/ament_target_dependencies.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test_label.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_test/cmake/ament_cmake_test-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_test/cmake/ament_cmake_testConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_test/cmake/ament_cmake_testConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_uncrustify.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_version/cmake/ament_cmake_version-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_version/cmake/ament_cmake_versionConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_version/cmake/ament_cmake_versionConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_version/cmake/ament_export_development_version_if_higher_than_manifest.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_autoConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_autoConfig.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_find_test_dependencies.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_common/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_common/cmake/ament_lint_commonConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/ament_lint_common/cmake/ament_lint_commonConfig.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfacesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfacesConfig.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/builtin_interfaces__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/builtin_interfaces/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fast-discovery-server-targets-none.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fast-discovery-server-targets.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fastrtps-config-version.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fastrtps-config.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fastrtps-targets-none.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps/cmake/fastrtps-targets.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps_cmake_module/cmake/Modules/FindFastRTPS.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps_cmake_module/cmake/fastrtps_cmake_module-extras.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps_cmake_module/cmake/fastrtps_cmake_moduleConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/fastrtps_cmake_module/cmake/fastrtps_cmake_moduleConfig.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collectorConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collectorConfig.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collectorExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collectorExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/libstatistics_collector_test_msgs__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/libstatistics_collector/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/libyaml_vendor/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/libyaml_vendor/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/libyaml_vendor/cmake/libyaml_vendor-extras.cmake"
|
||||
"/opt/ros/foxy/share/libyaml_vendor/cmake/libyaml_vendorConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/libyaml_vendor/cmake/libyaml_vendorConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rcl-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rclConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rclConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rclExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rclExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl/cmake/rcl_set_symbol_visibility_hidden.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfacesConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfacesConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rcl_interfaces__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_interfaces/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/rcl_logging_spdlogConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/rcl_logging_spdlogConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/rcl_logging_spdlogExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_logging_spdlog/cmake/rcl_logging_spdlogExport.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/rcl_yaml_param_parserConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/rcl_yaml_param_parserConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/rcl_yaml_param_parserExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcl_yaml_param_parser/cmake/rcl_yaml_param_parserExport.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/rclcppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/rclcppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/rclcppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rclcpp/cmake/rclcppExport.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/rcpputilsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/rcpputilsConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/rcpputilsExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcpputils/cmake/rcpputilsExport.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/ament_cmake_export_link_flags-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/rcutilsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/rcutilsConfig.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/rcutilsExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rcutils/cmake/rcutilsExport.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/configure_rmw_library.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/get_rmw_typesupport.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/register_rmw_implementation.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/rmw-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/rmwConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/rmwConfig.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/rmwExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rmw/cmake/rmwExport.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/rmw_implementation-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/rmw_implementationConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/rmw_implementationConfig.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/rmw_implementationExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation/cmake/rmw_implementationExport.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/call_for_each_rmw_implementation.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/get_available_rmw_implementations.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/get_default_rmw_implementation.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/rmw_implementation_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/rmw_implementation_cmakeConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rmw_implementation_cmake/cmake/rmw_implementation_cmakeConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgsConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosgraph_msgs__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosgraph_msgs/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_adapter/cmake/rosidl_adapt_interfaces.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_adapter/cmake/rosidl_adapter-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_adapter/cmake/rosidl_adapterConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_adapter/cmake/rosidl_adapterConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_cmakeConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_cmakeConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_export_typesupport_libraries.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_export_typesupport_targets.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_generate_interfaces.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_target_interfaces.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/rosidl_write_generator_arguments.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_cmake/cmake/string_camel_case_to_lower_case_underscore.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_default_runtime/cmake/rosidl_default_runtime-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_default_runtime/cmake/rosidl_default_runtimeConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_default_runtime/cmake/rosidl_default_runtimeConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/register_c.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/rosidl_generator_c-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/rosidl_generator_cConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_c/cmake/rosidl_generator_cConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/register_cpp.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/rosidl_generator_cpp-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/rosidl_generator_cppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_generator_cpp/cmake/rosidl_generator_cppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/rosidl_runtime_cConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/rosidl_runtime_cConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/rosidl_runtime_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_c/cmake/rosidl_runtime_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_cpp/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_cpp/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_cpp/cmake/rosidl_runtime_cppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_cpp/cmake/rosidl_runtime_cppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_runtime_cpp/cmake/rosidl_runtime_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/get_used_typesupports.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/rosidl_typesupport_c-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cpp-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_c-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cpp-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_interface/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_interface/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_interface/cmake/rosidl_typesupport_interfaceConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_interface/cmake/rosidl_typesupport_interfaceConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_interface/cmake/rosidl_typesupport_interfaceExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_c-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cpp-extras.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppConfig.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/spdlog_vendor/cmake/spdlog_vendorConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/spdlog_vendor/cmake/spdlog_vendorConfig.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgsConfig.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/statistics_msgs/cmake/statistics_msgs__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/ament_cmake_export_dependencies-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/rosidl_cmake-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/rosidl_cmake_export_typesupport_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgsConfig.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_generator_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_generator_cExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_generator_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_cExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_introspection_cExport-none.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_introspection_cExport.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_introspection_cppExport-none.cmake"
|
||||
"/opt/ros/foxy/share/std_msgs/cmake/std_msgs__rosidl_typesupport_introspection_cppExport.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/ament_cmake_export_include_directories-extras.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/ament_cmake_export_libraries-extras.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/ament_cmake_export_targets-extras.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/tracetoolsConfig-version.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/tracetoolsConfig.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/tracetools_exportExport-none.cmake"
|
||||
"/opt/ros/foxy/share/tracetools/cmake/tracetools_exportExport.cmake"
|
||||
"/usr/lib/aarch64-linux-gnu/cmake/spdlog/spdlogConfig.cmake"
|
||||
"/usr/lib/aarch64-linux-gnu/cmake/spdlog/spdlogConfigTargets-none.cmake"
|
||||
"/usr/lib/aarch64-linux-gnu/cmake/spdlog/spdlogConfigTargets.cmake"
|
||||
"/usr/lib/aarch64-linux-gnu/cmake/spdlog/spdlogConfigVersion.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCCompiler.cmake.in"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCXXCompiler.cmake.in"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCXXInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCompilerIdDetection.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCXXCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCompileFeatures.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCompilerABI.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineCompilerId.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeDetermineSystem.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeFindBinUtils.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeSystem.cmake.in"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeTestCCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeTestCXXCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeTestCompilerCommon.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeUnixFindMake.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckCSourceCompiles.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckFunctionExists.c"
|
||||
"/usr/share/cmake-3.16/Modules/CheckIncludeFile.c.in"
|
||||
"/usr/share/cmake-3.16/Modules/CheckIncludeFile.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckLibraryExists.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/DartConfiguration.tcl.in"
|
||||
"/usr/share/cmake-3.16/Modules/FindOpenSSL.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPkgConfig.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPythonInterp.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindThreads.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Internal/FeatureTesting.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-Determine-CXX.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake"
|
||||
)
|
||||
|
||||
# The corresponding makefile is:
|
||||
set(CMAKE_MAKEFILE_OUTPUTS
|
||||
"Makefile"
|
||||
"CMakeFiles/cmake.check_cache"
|
||||
)
|
||||
|
||||
# Byproducts of CMake generate step:
|
||||
set(CMAKE_MAKEFILE_PRODUCTS
|
||||
"CMakeFiles/3.16.3/CMakeSystem.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeCXXCompiler.cmake"
|
||||
"ament_cmake_core/stamps/templates_2_cmake.py.stamp"
|
||||
"ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake"
|
||||
"CTestConfiguration.ini"
|
||||
"ament_cmake_core/stamps/package.xml.stamp"
|
||||
"ament_cmake_core/stamps/package_xml_2_cmake.py.stamp"
|
||||
"ament_cmake_core/stamps/ament_prefix_path.sh.stamp"
|
||||
"ament_cmake_core/stamps/path.sh.stamp"
|
||||
"ament_cmake_environment_hooks/local_setup.bash"
|
||||
"ament_cmake_environment_hooks/local_setup.sh"
|
||||
"ament_cmake_environment_hooks/local_setup.zsh"
|
||||
"ament_cmake_core/stamps/nameConfig.cmake.in.stamp"
|
||||
"ament_cmake_core/beacon_positioningConfig.cmake"
|
||||
"ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp"
|
||||
"ament_cmake_core/beacon_positioningConfig-version.cmake"
|
||||
"ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/beacon_positioning"
|
||||
"ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/beacon_positioning"
|
||||
"ament_cmake_index/share/ament_index/resource_index/packages/beacon_positioning"
|
||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
)
|
||||
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/tracker_position.dir/DependInfo.cmake"
|
||||
"CMakeFiles/beacon_positioning_uninstall.dir/DependInfo.cmake"
|
||||
"CMakeFiles/uninstall.dir/DependInfo.cmake"
|
||||
)
|
||||
162
src/build/beacon_positioning/CMakeFiles/Makefile2
Normal file
162
src/build/beacon_positioning/CMakeFiles/Makefile2
Normal file
@@ -0,0 +1,162 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for the build root directory
|
||||
|
||||
# The main recursive "all" target.
|
||||
all: CMakeFiles/tracker_position.dir/all
|
||||
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive "preinstall" target.
|
||||
preinstall:
|
||||
|
||||
.PHONY : preinstall
|
||||
|
||||
# The main recursive "clean" target.
|
||||
clean: CMakeFiles/tracker_position.dir/clean
|
||||
clean: CMakeFiles/beacon_positioning_uninstall.dir/clean
|
||||
clean: CMakeFiles/uninstall.dir/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/tracker_position.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/tracker_position.dir/all:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/depend
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles --progress-num=1,2 "Built target tracker_position"
|
||||
.PHONY : CMakeFiles/tracker_position.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/tracker_position.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 2
|
||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/tracker_position.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/tracker_position.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
tracker_position: CMakeFiles/tracker_position.dir/rule
|
||||
|
||||
.PHONY : tracker_position
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/tracker_position.dir/clean:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/clean
|
||||
.PHONY : CMakeFiles/tracker_position.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/beacon_positioning_uninstall.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/all:
|
||||
$(MAKE) -f CMakeFiles/beacon_positioning_uninstall.dir/build.make CMakeFiles/beacon_positioning_uninstall.dir/depend
|
||||
$(MAKE) -f CMakeFiles/beacon_positioning_uninstall.dir/build.make CMakeFiles/beacon_positioning_uninstall.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles --progress-num= "Built target beacon_positioning_uninstall"
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/beacon_positioning_uninstall.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
beacon_positioning_uninstall: CMakeFiles/beacon_positioning_uninstall.dir/rule
|
||||
|
||||
.PHONY : beacon_positioning_uninstall
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/clean:
|
||||
$(MAKE) -f CMakeFiles/beacon_positioning_uninstall.dir/build.make CMakeFiles/beacon_positioning_uninstall.dir/clean
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/uninstall.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/uninstall.dir/all: CMakeFiles/beacon_positioning_uninstall.dir/all
|
||||
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/depend
|
||||
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles --progress-num= "Built target uninstall"
|
||||
.PHONY : CMakeFiles/uninstall.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/uninstall.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/uninstall.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/uninstall.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
uninstall: CMakeFiles/uninstall.dir/rule
|
||||
|
||||
.PHONY : uninstall
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/uninstall.dir/clean:
|
||||
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/clean
|
||||
.PHONY : CMakeFiles/uninstall.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/install/strip.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/install/local.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/install.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/list_install_components.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/rebuild_cache.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/edit_cache.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/test.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/tracker_position.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/beacon_positioning_uninstall.dir
|
||||
/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/uninstall.dir
|
||||
@@ -0,0 +1,11 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
@@ -0,0 +1,76 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
# Utility rule file for beacon_positioning_uninstall.
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/beacon_positioning_uninstall.dir/progress.make
|
||||
|
||||
CMakeFiles/beacon_positioning_uninstall:
|
||||
/usr/bin/cmake -P /home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake
|
||||
|
||||
beacon_positioning_uninstall: CMakeFiles/beacon_positioning_uninstall
|
||||
beacon_positioning_uninstall: CMakeFiles/beacon_positioning_uninstall.dir/build.make
|
||||
|
||||
.PHONY : beacon_positioning_uninstall
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/build: beacon_positioning_uninstall
|
||||
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/build
|
||||
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/beacon_positioning_uninstall.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/clean
|
||||
|
||||
CMakeFiles/beacon_positioning_uninstall.dir/depend:
|
||||
cd /home/ubuntu/ros2_ws/src/build/beacon_positioning && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/beacon_positioning_uninstall.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/beacon_positioning_uninstall.dir/depend
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/beacon_positioning_uninstall"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/beacon_positioning_uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
1
src/build/beacon_positioning/CMakeFiles/progress.marks
Normal file
1
src/build/beacon_positioning/CMakeFiles/progress.marks
Normal file
@@ -0,0 +1 @@
|
||||
2
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
"CXX"
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_CXX
|
||||
"/home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o"
|
||||
)
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
|
||||
# Preprocessor definitions for this target.
|
||||
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||
"DEFAULT_RMW_IMPLEMENTATION=rmw_fastrtps_cpp"
|
||||
"RCUTILS_ENABLE_FAULT_INJECTION"
|
||||
"SPDLOG_COMPILED_LIB"
|
||||
)
|
||||
|
||||
# The include file search paths:
|
||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||
"/home/ubuntu/ros2_ws/src/beacon_positioning/include"
|
||||
"/opt/ros/foxy/include"
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
@@ -0,0 +1,145 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/tracker_position.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/tracker_position.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/tracker_position.dir/flags.make
|
||||
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: CMakeFiles/tracker_position.dir/flags.make
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o -c /home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp
|
||||
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/tracker_position.dir/src/tracker_position.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp > CMakeFiles/tracker_position.dir/src/tracker_position.cpp.i
|
||||
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/tracker_position.dir/src/tracker_position.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp -o CMakeFiles/tracker_position.dir/src/tracker_position.cpp.s
|
||||
|
||||
# Object files for target tracker_position
|
||||
tracker_position_OBJECTS = \
|
||||
"CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o"
|
||||
|
||||
# External object files for target tracker_position
|
||||
tracker_position_EXTERNAL_OBJECTS =
|
||||
|
||||
tracker_position: CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o
|
||||
tracker_position: CMakeFiles/tracker_position.dir/build.make
|
||||
tracker_position: /opt/ros/foxy/lib/librclcpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstd_msgs__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_interfaces__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librmw_implementation.so
|
||||
tracker_position: /opt/ros/foxy/lib/librmw.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_logging_spdlog.so
|
||||
tracker_position: /usr/lib/aarch64-linux-gnu/libspdlog.so.1.5.0
|
||||
tracker_position: /opt/ros/foxy/lib/librcl_yaml_param_parser.so
|
||||
tracker_position: /opt/ros/foxy/lib/libyaml.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosgraph_msgs__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstatistics_msgs__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_generator_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosidl_typesupport_introspection_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosidl_typesupport_introspection_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosidl_typesupport_cpp.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosidl_typesupport_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcpputils.so
|
||||
tracker_position: /opt/ros/foxy/lib/librosidl_runtime_c.so
|
||||
tracker_position: /opt/ros/foxy/lib/librcutils.so
|
||||
tracker_position: /opt/ros/foxy/lib/libtracetools.so
|
||||
tracker_position: CMakeFiles/tracker_position.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable tracker_position"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/tracker_position.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/tracker_position.dir/build: tracker_position
|
||||
|
||||
.PHONY : CMakeFiles/tracker_position.dir/build
|
||||
|
||||
CMakeFiles/tracker_position.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/tracker_position.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/tracker_position.dir/clean
|
||||
|
||||
CMakeFiles/tracker_position.dir/depend:
|
||||
cd /home/ubuntu/ros2_ws/src/build/beacon_positioning && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/tracker_position.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/tracker_position.dir/depend
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o"
|
||||
"tracker_position"
|
||||
"tracker_position.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang CXX)
|
||||
include(CMakeFiles/tracker_position.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -0,0 +1,284 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o
|
||||
/home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__builder.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__struct.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__traits.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/time__builder.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/time__struct.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/detail/time__traits.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/duration.hpp
|
||||
/opt/ros/foxy/include/builtin_interfaces/msg/time.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/collector/collector.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/collector/generate_statistics_message.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/collector/metric_details_interface.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/moving_average_statistics/moving_average.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/moving_average_statistics/types.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/constants.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/received_message_age.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/received_message_period.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/topic_statistics_collector.hpp
|
||||
/opt/ros/foxy/include/libstatistics_collector/visibility_control.hpp
|
||||
/opt/ros/foxy/include/rcl/allocator.h
|
||||
/opt/ros/foxy/include/rcl/arguments.h
|
||||
/opt/ros/foxy/include/rcl/client.h
|
||||
/opt/ros/foxy/include/rcl/context.h
|
||||
/opt/ros/foxy/include/rcl/domain_id.h
|
||||
/opt/ros/foxy/include/rcl/error_handling.h
|
||||
/opt/ros/foxy/include/rcl/event.h
|
||||
/opt/ros/foxy/include/rcl/graph.h
|
||||
/opt/ros/foxy/include/rcl/guard_condition.h
|
||||
/opt/ros/foxy/include/rcl/init_options.h
|
||||
/opt/ros/foxy/include/rcl/macros.h
|
||||
/opt/ros/foxy/include/rcl/node.h
|
||||
/opt/ros/foxy/include/rcl/node_options.h
|
||||
/opt/ros/foxy/include/rcl/publisher.h
|
||||
/opt/ros/foxy/include/rcl/service.h
|
||||
/opt/ros/foxy/include/rcl/subscription.h
|
||||
/opt/ros/foxy/include/rcl/time.h
|
||||
/opt/ros/foxy/include/rcl/timer.h
|
||||
/opt/ros/foxy/include/rcl/types.h
|
||||
/opt/ros/foxy/include/rcl/visibility_control.h
|
||||
/opt/ros/foxy/include/rcl/wait.h
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/floating_point_range__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/floating_point_range__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/integer_range__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/integer_range__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/list_parameters_result.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/parameter.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/parameter_descriptor.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/parameter_event.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/parameter_type.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/parameter_value.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/msg/set_parameters_result.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/describe_parameters.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__builder.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__struct.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__traits.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/get_parameter_types.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/get_parameters.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/list_parameters.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/set_parameters.hpp
|
||||
/opt/ros/foxy/include/rcl_interfaces/srv/set_parameters_atomically.hpp
|
||||
/opt/ros/foxy/include/rcl_yaml_param_parser/types.h
|
||||
/opt/ros/foxy/include/rclcpp/allocator/allocator_common.hpp
|
||||
/opt/ros/foxy/include/rclcpp/allocator/allocator_deleter.hpp
|
||||
/opt/ros/foxy/include/rclcpp/any_executable.hpp
|
||||
/opt/ros/foxy/include/rclcpp/any_service_callback.hpp
|
||||
/opt/ros/foxy/include/rclcpp/any_subscription_callback.hpp
|
||||
/opt/ros/foxy/include/rclcpp/callback_group.hpp
|
||||
/opt/ros/foxy/include/rclcpp/client.hpp
|
||||
/opt/ros/foxy/include/rclcpp/clock.hpp
|
||||
/opt/ros/foxy/include/rclcpp/context.hpp
|
||||
/opt/ros/foxy/include/rclcpp/contexts/default_context.hpp
|
||||
/opt/ros/foxy/include/rclcpp/create_client.hpp
|
||||
/opt/ros/foxy/include/rclcpp/create_publisher.hpp
|
||||
/opt/ros/foxy/include/rclcpp/create_service.hpp
|
||||
/opt/ros/foxy/include/rclcpp/create_subscription.hpp
|
||||
/opt/ros/foxy/include/rclcpp/create_timer.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/mutex_two_priorities.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/resolve_enable_topic_statistics.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/resolve_intra_process_buffer_type.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/resolve_use_intra_process.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_payload.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_publisher_payload.hpp
|
||||
/opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_subscription_payload.hpp
|
||||
/opt/ros/foxy/include/rclcpp/duration.hpp
|
||||
/opt/ros/foxy/include/rclcpp/event.hpp
|
||||
/opt/ros/foxy/include/rclcpp/exceptions.hpp
|
||||
/opt/ros/foxy/include/rclcpp/exceptions/exceptions.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executor.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executor_options.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executors.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executors/multi_threaded_executor.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executors/single_threaded_executor.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executors/static_executor_entities_collector.hpp
|
||||
/opt/ros/foxy/include/rclcpp/executors/static_single_threaded_executor.hpp
|
||||
/opt/ros/foxy/include/rclcpp/expand_topic_or_service_name.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/buffers/buffer_implementation_base.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/buffers/intra_process_buffer.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/buffers/ring_buffer_implementation.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/create_intra_process_buffer.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/executable_list.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/intra_process_manager.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/subscription_intra_process.hpp
|
||||
/opt/ros/foxy/include/rclcpp/experimental/subscription_intra_process_base.hpp
|
||||
/opt/ros/foxy/include/rclcpp/function_traits.hpp
|
||||
/opt/ros/foxy/include/rclcpp/future_return_code.hpp
|
||||
/opt/ros/foxy/include/rclcpp/guard_condition.hpp
|
||||
/opt/ros/foxy/include/rclcpp/init_options.hpp
|
||||
/opt/ros/foxy/include/rclcpp/intra_process_buffer_type.hpp
|
||||
/opt/ros/foxy/include/rclcpp/intra_process_setting.hpp
|
||||
/opt/ros/foxy/include/rclcpp/loaned_message.hpp
|
||||
/opt/ros/foxy/include/rclcpp/logger.hpp
|
||||
/opt/ros/foxy/include/rclcpp/logging.hpp
|
||||
/opt/ros/foxy/include/rclcpp/macros.hpp
|
||||
/opt/ros/foxy/include/rclcpp/memory_strategies.hpp
|
||||
/opt/ros/foxy/include/rclcpp/memory_strategy.hpp
|
||||
/opt/ros/foxy/include/rclcpp/message_info.hpp
|
||||
/opt/ros/foxy/include/rclcpp/message_memory_strategy.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_impl.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/get_node_base_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/get_node_timers_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/get_node_topics_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_base_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_base_interface_traits.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_clock_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_graph_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_logging_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_parameters_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_services_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_time_source_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_timers_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_timers_interface_traits.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_topics_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_topics_interface_traits.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_interfaces/node_waitables_interface.hpp
|
||||
/opt/ros/foxy/include/rclcpp/node_options.hpp
|
||||
/opt/ros/foxy/include/rclcpp/parameter.hpp
|
||||
/opt/ros/foxy/include/rclcpp/parameter_client.hpp
|
||||
/opt/ros/foxy/include/rclcpp/parameter_service.hpp
|
||||
/opt/ros/foxy/include/rclcpp/parameter_value.hpp
|
||||
/opt/ros/foxy/include/rclcpp/publisher.hpp
|
||||
/opt/ros/foxy/include/rclcpp/publisher_base.hpp
|
||||
/opt/ros/foxy/include/rclcpp/publisher_factory.hpp
|
||||
/opt/ros/foxy/include/rclcpp/publisher_options.hpp
|
||||
/opt/ros/foxy/include/rclcpp/qos.hpp
|
||||
/opt/ros/foxy/include/rclcpp/qos_event.hpp
|
||||
/opt/ros/foxy/include/rclcpp/rate.hpp
|
||||
/opt/ros/foxy/include/rclcpp/rclcpp.hpp
|
||||
/opt/ros/foxy/include/rclcpp/scope_exit.hpp
|
||||
/opt/ros/foxy/include/rclcpp/serialized_message.hpp
|
||||
/opt/ros/foxy/include/rclcpp/service.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription_base.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription_factory.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription_options.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription_traits.hpp
|
||||
/opt/ros/foxy/include/rclcpp/subscription_wait_set_mask.hpp
|
||||
/opt/ros/foxy/include/rclcpp/time.hpp
|
||||
/opt/ros/foxy/include/rclcpp/timer.hpp
|
||||
/opt/ros/foxy/include/rclcpp/topic_statistics/subscription_topic_statistics.hpp
|
||||
/opt/ros/foxy/include/rclcpp/topic_statistics_state.hpp
|
||||
/opt/ros/foxy/include/rclcpp/type_support_decl.hpp
|
||||
/opt/ros/foxy/include/rclcpp/utilities.hpp
|
||||
/opt/ros/foxy/include/rclcpp/visibility_control.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_result.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_result_kind.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/detail/storage_policy_common.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/detail/synchronization_policy_common.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/detail/write_preferring_read_write_lock.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/dynamic_storage.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/sequential_synchronization.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/static_storage.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_policies/thread_safe_synchronization.hpp
|
||||
/opt/ros/foxy/include/rclcpp/wait_set_template.hpp
|
||||
/opt/ros/foxy/include/rclcpp/waitable.hpp
|
||||
/opt/ros/foxy/include/rcpputils/join.hpp
|
||||
/opt/ros/foxy/include/rcpputils/pointer_traits.hpp
|
||||
/opt/ros/foxy/include/rcpputils/thread_safety_annotations.hpp
|
||||
/opt/ros/foxy/include/rcutils/allocator.h
|
||||
/opt/ros/foxy/include/rcutils/error_handling.h
|
||||
/opt/ros/foxy/include/rcutils/logging.h
|
||||
/opt/ros/foxy/include/rcutils/logging_macros.h
|
||||
/opt/ros/foxy/include/rcutils/macros.h
|
||||
/opt/ros/foxy/include/rcutils/qsort.h
|
||||
/opt/ros/foxy/include/rcutils/snprintf.h
|
||||
/opt/ros/foxy/include/rcutils/testing/fault_injection.h
|
||||
/opt/ros/foxy/include/rcutils/time.h
|
||||
/opt/ros/foxy/include/rcutils/types.h
|
||||
/opt/ros/foxy/include/rcutils/types/array_list.h
|
||||
/opt/ros/foxy/include/rcutils/types/char_array.h
|
||||
/opt/ros/foxy/include/rcutils/types/hash_map.h
|
||||
/opt/ros/foxy/include/rcutils/types/rcutils_ret.h
|
||||
/opt/ros/foxy/include/rcutils/types/string_array.h
|
||||
/opt/ros/foxy/include/rcutils/types/string_map.h
|
||||
/opt/ros/foxy/include/rcutils/types/uint8_array.h
|
||||
/opt/ros/foxy/include/rcutils/visibility_control.h
|
||||
/opt/ros/foxy/include/rcutils/visibility_control_macros.h
|
||||
/opt/ros/foxy/include/rmw/domain_id.h
|
||||
/opt/ros/foxy/include/rmw/error_handling.h
|
||||
/opt/ros/foxy/include/rmw/get_topic_names_and_types.h
|
||||
/opt/ros/foxy/include/rmw/incompatible_qos_events_statuses.h
|
||||
/opt/ros/foxy/include/rmw/init.h
|
||||
/opt/ros/foxy/include/rmw/init_options.h
|
||||
/opt/ros/foxy/include/rmw/localhost.h
|
||||
/opt/ros/foxy/include/rmw/macros.h
|
||||
/opt/ros/foxy/include/rmw/message_sequence.h
|
||||
/opt/ros/foxy/include/rmw/names_and_types.h
|
||||
/opt/ros/foxy/include/rmw/qos_profiles.h
|
||||
/opt/ros/foxy/include/rmw/ret_types.h
|
||||
/opt/ros/foxy/include/rmw/rmw.h
|
||||
/opt/ros/foxy/include/rmw/security_options.h
|
||||
/opt/ros/foxy/include/rmw/serialized_message.h
|
||||
/opt/ros/foxy/include/rmw/subscription_options.h
|
||||
/opt/ros/foxy/include/rmw/topic_endpoint_info.h
|
||||
/opt/ros/foxy/include/rmw/topic_endpoint_info_array.h
|
||||
/opt/ros/foxy/include/rmw/types.h
|
||||
/opt/ros/foxy/include/rmw/visibility_control.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_c/message_initialization.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_c/message_type_support_struct.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_c/sequence_bound.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_c/service_type_support_struct.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_c/visibility_control.h
|
||||
/opt/ros/foxy/include/rosidl_runtime_cpp/bounded_vector.hpp
|
||||
/opt/ros/foxy/include/rosidl_runtime_cpp/message_initialization.hpp
|
||||
/opt/ros/foxy/include/rosidl_runtime_cpp/message_type_support_decl.hpp
|
||||
/opt/ros/foxy/include/rosidl_runtime_cpp/service_type_support_decl.hpp
|
||||
/opt/ros/foxy/include/rosidl_runtime_cpp/traits.hpp
|
||||
/opt/ros/foxy/include/rosidl_typesupport_cpp/message_type_support.hpp
|
||||
/opt/ros/foxy/include/rosidl_typesupport_cpp/service_type_support.hpp
|
||||
/opt/ros/foxy/include/rosidl_typesupport_interface/macros.h
|
||||
/opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__builder.hpp
|
||||
/opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__struct.hpp
|
||||
/opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__traits.hpp
|
||||
/opt/ros/foxy/include/statistics_msgs/msg/detail/statistic_data_point__struct.hpp
|
||||
/opt/ros/foxy/include/statistics_msgs/msg/metrics_message.hpp
|
||||
/opt/ros/foxy/include/std_msgs/msg/detail/string__builder.hpp
|
||||
/opt/ros/foxy/include/std_msgs/msg/detail/string__struct.hpp
|
||||
/opt/ros/foxy/include/std_msgs/msg/detail/string__traits.hpp
|
||||
/opt/ros/foxy/include/std_msgs/msg/string.hpp
|
||||
/opt/ros/foxy/include/tracetools/config.h
|
||||
/opt/ros/foxy/include/tracetools/tracetools.h
|
||||
/opt/ros/foxy/include/tracetools/utils.hpp
|
||||
/opt/ros/foxy/include/tracetools/visibility_control.hpp
|
||||
@@ -0,0 +1,284 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /home/ubuntu/ros2_ws/src/beacon_positioning/src/tracker_position.cpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/duration__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/time__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/time__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/detail/time__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/duration.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/builtin_interfaces/msg/time.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/collector/collector.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/collector/generate_statistics_message.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/collector/metric_details_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/moving_average_statistics/moving_average.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/moving_average_statistics/types.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/constants.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/received_message_age.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/received_message_period.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/topic_statistics_collector/topic_statistics_collector.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/libstatistics_collector/visibility_control.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/allocator.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/arguments.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/client.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/context.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/domain_id.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/error_handling.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/event.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/graph.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/guard_condition.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/init_options.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/node.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/node_options.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/publisher.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/service.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/subscription.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/time.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/timer.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/visibility_control.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl/wait.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/floating_point_range__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/floating_point_range__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/integer_range__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/integer_range__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/list_parameters_result__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_descriptor__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_event__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_type__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/parameter_value__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/detail/set_parameters_result__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/list_parameters_result.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/parameter.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/parameter_descriptor.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/parameter_event.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/parameter_type.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/parameter_value.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/msg/set_parameters_result.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/describe_parameters.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/describe_parameters__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameter_types__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/get_parameters__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/list_parameters__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/detail/set_parameters_atomically__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/get_parameter_types.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/get_parameters.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/list_parameters.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/set_parameters.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_interfaces/srv/set_parameters_atomically.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcl_yaml_param_parser/types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/allocator/allocator_common.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/allocator/allocator_deleter.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/any_executable.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/any_service_callback.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/any_subscription_callback.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/callback_group.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/client.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/clock.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/context.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/contexts/default_context.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/create_client.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/create_publisher.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/create_service.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/create_subscription.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/create_timer.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/mutex_two_priorities.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/resolve_enable_topic_statistics.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/resolve_intra_process_buffer_type.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/resolve_use_intra_process.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_payload.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_publisher_payload.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/detail/rmw_implementation_specific_subscription_payload.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/duration.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/event.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/exceptions.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/exceptions/exceptions.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executor.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executor_options.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executors.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executors/multi_threaded_executor.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executors/single_threaded_executor.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executors/static_executor_entities_collector.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/executors/static_single_threaded_executor.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/expand_topic_or_service_name.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/buffers/buffer_implementation_base.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/buffers/intra_process_buffer.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/buffers/ring_buffer_implementation.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/create_intra_process_buffer.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/executable_list.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/intra_process_manager.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/subscription_intra_process.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/experimental/subscription_intra_process_base.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/function_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/future_return_code.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/guard_condition.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/init_options.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/intra_process_buffer_type.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/intra_process_setting.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/loaned_message.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/logger.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/logging.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/macros.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/memory_strategies.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/memory_strategy.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/message_info.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/message_memory_strategy.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_impl.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/get_node_base_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/get_node_timers_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/get_node_topics_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_base_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_base_interface_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_clock_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_graph_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_logging_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_parameters_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_services_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_time_source_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_timers_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_timers_interface_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_topics_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_topics_interface_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_interfaces/node_waitables_interface.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/node_options.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/parameter.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/parameter_client.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/parameter_service.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/parameter_value.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/publisher.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/publisher_base.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/publisher_factory.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/publisher_options.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/qos.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/qos_event.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/rate.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/rclcpp.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/scope_exit.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/serialized_message.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/service.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription_base.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription_factory.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription_options.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/subscription_wait_set_mask.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/time.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/timer.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/topic_statistics/subscription_topic_statistics.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/topic_statistics_state.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/type_support_decl.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/utilities.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/visibility_control.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_result.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_result_kind.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/detail/storage_policy_common.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/detail/synchronization_policy_common.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/detail/write_preferring_read_write_lock.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/dynamic_storage.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/sequential_synchronization.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/static_storage.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_policies/thread_safe_synchronization.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/wait_set_template.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rclcpp/waitable.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcpputils/join.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcpputils/pointer_traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcpputils/thread_safety_annotations.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/allocator.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/error_handling.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/logging.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/logging_macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/qsort.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/snprintf.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/testing/fault_injection.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/time.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/array_list.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/char_array.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/hash_map.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/rcutils_ret.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/string_array.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/string_map.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/types/uint8_array.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/visibility_control.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rcutils/visibility_control_macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/domain_id.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/error_handling.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/get_topic_names_and_types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/incompatible_qos_events_statuses.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/init.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/init_options.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/localhost.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/message_sequence.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/names_and_types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/qos_profiles.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/ret_types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/rmw.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/security_options.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/serialized_message.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/subscription_options.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/topic_endpoint_info.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/topic_endpoint_info_array.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/types.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rmw/visibility_control.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_c/message_initialization.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_c/message_type_support_struct.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_c/sequence_bound.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_c/service_type_support_struct.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_c/visibility_control.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_cpp/bounded_vector.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_cpp/message_initialization.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_cpp/message_type_support_decl.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_cpp/service_type_support_decl.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_runtime_cpp/traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_typesupport_cpp/message_type_support.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_typesupport_cpp/service_type_support.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/rosidl_typesupport_interface/macros.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/statistics_msgs/msg/detail/metrics_message__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/statistics_msgs/msg/detail/statistic_data_point__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/statistics_msgs/msg/metrics_message.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/std_msgs/msg/detail/string__builder.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/std_msgs/msg/detail/string__struct.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/std_msgs/msg/detail/string__traits.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/std_msgs/msg/string.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/tracetools/config.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/tracetools/tracetools.h
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/tracetools/utils.hpp
|
||||
CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o: /opt/ros/foxy/include/tracetools/visibility_control.hpp
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# compile CXX with /usr/bin/c++
|
||||
CXX_FLAGS = -Wall -Wextra -Wpedantic -std=gnu++14
|
||||
|
||||
CXX_DEFINES = -DDEFAULT_RMW_IMPLEMENTATION=rmw_fastrtps_cpp -DRCUTILS_ENABLE_FAULT_INJECTION -DSPDLOG_COMPILED_LIB
|
||||
|
||||
CXX_INCLUDES = -I/home/ubuntu/ros2_ws/src/beacon_positioning/include -isystem /opt/ros/foxy/include
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
/usr/bin/c++ CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o -o tracker_position -Wl,-rpath,/opt/ros/foxy/lib: /opt/ros/foxy/lib/librclcpp.so /opt/ros/foxy/lib/liblibstatistics_collector.so /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_generator_c.so /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_c.so /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/liblibstatistics_collector_test_msgs__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/libstd_msgs__rosidl_generator_c.so /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_c.so /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/librcl.so /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/librcl_interfaces__rosidl_generator_c.so /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_c.so /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/librcl_interfaces__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/librmw_implementation.so /opt/ros/foxy/lib/librmw.so /opt/ros/foxy/lib/librcl_logging_spdlog.so /usr/lib/aarch64-linux-gnu/libspdlog.so.1.5.0 -lpthread /opt/ros/foxy/lib/librcl_yaml_param_parser.so /opt/ros/foxy/lib/libyaml.so /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/librosgraph_msgs__rosidl_generator_c.so /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_c.so /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/librosgraph_msgs__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/libstatistics_msgs__rosidl_generator_c.so /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_c.so /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/libstatistics_msgs__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_generator_c.so /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_c.so /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/librosidl_typesupport_introspection_cpp.so /opt/ros/foxy/lib/librosidl_typesupport_introspection_c.so /opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_cpp.so /opt/ros/foxy/lib/librosidl_typesupport_cpp.so /opt/ros/foxy/lib/librosidl_typesupport_c.so /opt/ros/foxy/lib/librcpputils.so /opt/ros/foxy/lib/librosidl_runtime_c.so /opt/ros/foxy/lib/librcutils.so -ldl /opt/ros/foxy/lib/libtracetools.so
|
||||
@@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
@@ -0,0 +1,72 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
# Utility rule file for uninstall.
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/uninstall.dir/progress.make
|
||||
|
||||
uninstall: CMakeFiles/uninstall.dir/build.make
|
||||
|
||||
.PHONY : uninstall
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/uninstall.dir/build: uninstall
|
||||
|
||||
.PHONY : CMakeFiles/uninstall.dir/build
|
||||
|
||||
CMakeFiles/uninstall.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/uninstall.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/uninstall.dir/clean
|
||||
|
||||
CMakeFiles/uninstall.dir/depend:
|
||||
cd /home/ubuntu/ros2_ws/src/build/beacon_positioning && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/uninstall.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/uninstall.dir/depend
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
105
src/build/beacon_positioning/CTestConfiguration.ini
Normal file
105
src/build/beacon_positioning/CTestConfiguration.ini
Normal file
@@ -0,0 +1,105 @@
|
||||
# This file is configured by CMake automatically as DartConfiguration.tcl
|
||||
# If you choose not to use CMake, this file may be hand configured, by
|
||||
# filling in the required variables.
|
||||
|
||||
|
||||
# Configuration directories and files
|
||||
SourceDirectory: /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
BuildDirectory: /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
# Where to place the cost data store
|
||||
CostDataFile:
|
||||
|
||||
# Site is something like machine.domain, i.e. pragmatic.crd
|
||||
Site: ubuntu
|
||||
|
||||
# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
|
||||
BuildName:
|
||||
|
||||
# Subprojects
|
||||
LabelsForSubprojects:
|
||||
|
||||
# Submission information
|
||||
SubmitURL:
|
||||
|
||||
# Dashboard start time
|
||||
NightlyStartTime:
|
||||
|
||||
# Commands for the build/test/submit cycle
|
||||
ConfigureCommand: "/usr/bin/cmake" "/home/ubuntu/ros2_ws/src/beacon_positioning"
|
||||
MakeCommand:
|
||||
DefaultCTestConfigurationType:
|
||||
|
||||
# version control
|
||||
UpdateVersionOnly:
|
||||
|
||||
# CVS options
|
||||
# Default is "-d -P -A"
|
||||
CVSCommand:
|
||||
CVSUpdateOptions:
|
||||
|
||||
# Subversion options
|
||||
SVNCommand:
|
||||
SVNOptions:
|
||||
SVNUpdateOptions:
|
||||
|
||||
# Git options
|
||||
GITCommand:
|
||||
GITInitSubmodules:
|
||||
GITUpdateOptions:
|
||||
GITUpdateCustom:
|
||||
|
||||
# Perforce options
|
||||
P4Command:
|
||||
P4Client:
|
||||
P4Options:
|
||||
P4UpdateOptions:
|
||||
P4UpdateCustom:
|
||||
|
||||
# Generic update command
|
||||
UpdateCommand:
|
||||
UpdateOptions:
|
||||
UpdateType:
|
||||
|
||||
# Compiler info
|
||||
Compiler: /usr/bin/c++
|
||||
CompilerVersion: 9.4.0
|
||||
|
||||
# Dynamic analysis (MemCheck)
|
||||
PurifyCommand:
|
||||
ValgrindCommand:
|
||||
ValgrindCommandOptions:
|
||||
MemoryCheckType:
|
||||
MemoryCheckSanitizerOptions:
|
||||
MemoryCheckCommand:
|
||||
MemoryCheckCommandOptions:
|
||||
MemoryCheckSuppressionFile:
|
||||
|
||||
# Coverage
|
||||
CoverageCommand:
|
||||
CoverageExtraFlags:
|
||||
|
||||
# Cluster commands
|
||||
SlurmBatchCommand:
|
||||
SlurmRunCommand:
|
||||
|
||||
# Testing options
|
||||
# TimeOut is the amount of time in seconds to wait for processes
|
||||
# to complete during testing. After TimeOut seconds, the
|
||||
# process will be summarily terminated.
|
||||
# Currently set to 25 minutes
|
||||
TimeOut:
|
||||
|
||||
# During parallel testing CTest will not start a new test if doing
|
||||
# so would cause the system load to exceed this value.
|
||||
TestLoad:
|
||||
|
||||
UseLaunchers:
|
||||
CurlOptions:
|
||||
# warning, if you add new options here that have to do with submit,
|
||||
# you have to update cmCTestSubmitCommand.cxx
|
||||
|
||||
# For CTest submissions that timeout, these options
|
||||
# specify behavior for retrying the submission
|
||||
CTestSubmitRetryDelay:
|
||||
CTestSubmitRetryCount:
|
||||
2
src/build/beacon_positioning/CTestCustom.cmake
Normal file
2
src/build/beacon_positioning/CTestCustom.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
|
||||
set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
|
||||
18
src/build/beacon_positioning/CTestTestfile.cmake
Normal file
18
src/build/beacon_positioning/CTestTestfile.cmake
Normal file
@@ -0,0 +1,18 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
# Build directory: /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
add_test(copyright "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/copyright.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_copyright/copyright.txt" "--command" "/opt/ros/foxy/bin/ament_copyright" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/copyright.xunit.xml")
|
||||
set_tests_properties(copyright PROPERTIES LABELS "copyright;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_copyright.cmake;41;ament_add_test;/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyright_lint_hook.cmake;18;ament_copyright;/opt/ros/foxy/share/ament_cmake_copyright/cmake/ament_cmake_copyright_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
add_test(cppcheck "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/cppcheck.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_cppcheck/cppcheck.txt" "--command" "/opt/ros/foxy/bin/ament_cppcheck" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/cppcheck.xunit.xml" "--include_dirs" "/home/ubuntu/ros2_ws/src/beacon_positioning/include")
|
||||
set_tests_properties(cppcheck PROPERTIES LABELS "cppcheck;linter" TIMEOUT "300" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cppcheck.cmake;61;ament_add_test;/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck_lint_hook.cmake;83;ament_cppcheck;/opt/ros/foxy/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
add_test(cpplint "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/cpplint.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_cpplint/cpplint.txt" "--command" "/opt/ros/foxy/bin/ament_cpplint" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/cpplint.xunit.xml")
|
||||
set_tests_properties(cpplint PROPERTIES LABELS "cpplint;linter" TIMEOUT "120" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cpplint.cmake;68;ament_add_test;/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplint_lint_hook.cmake;35;ament_cpplint;/opt/ros/foxy/share/ament_cmake_cpplint/cmake/ament_cmake_cpplint_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
add_test(lint_cmake "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/lint_cmake.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_lint_cmake/lint_cmake.txt" "--command" "/opt/ros/foxy/bin/ament_lint_cmake" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/lint_cmake.xunit.xml")
|
||||
set_tests_properties(lint_cmake PROPERTIES LABELS "lint_cmake;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake;41;ament_add_test;/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;21;ament_lint_cmake;/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
add_test(uncrustify "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/uncrustify.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_uncrustify/uncrustify.txt" "--command" "/opt/ros/foxy/bin/ament_uncrustify" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/uncrustify.xunit.xml")
|
||||
set_tests_properties(uncrustify PROPERTIES LABELS "uncrustify;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_uncrustify.cmake;65;ament_add_test;/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify_lint_hook.cmake;34;ament_uncrustify;/opt/ros/foxy/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
add_test(xmllint "/usr/bin/python3" "-u" "/opt/ros/foxy/share/ament_cmake_test/cmake/run_test.py" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/xmllint.xunit.xml" "--package-name" "beacon_positioning" "--output-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/ament_xmllint/xmllint.txt" "--command" "/opt/ros/foxy/bin/ament_xmllint" "--xunit-file" "/home/ubuntu/ros2_ws/src/build/beacon_positioning/test_results/beacon_positioning/xmllint.xunit.xml")
|
||||
set_tests_properties(xmllint PROPERTIES LABELS "xmllint;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/ubuntu/ros2_ws/src/beacon_positioning" _BACKTRACE_TRIPLES "/opt/ros/foxy/share/ament_cmake_test/cmake/ament_add_test.cmake;118;add_test;/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake;50;ament_add_test;/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;18;ament_xmllint;/opt/ros/foxy/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/foxy/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/foxy/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;47;ament_package;/home/ubuntu/ros2_ws/src/beacon_positioning/CMakeLists.txt;0;")
|
||||
268
src/build/beacon_positioning/Makefile
Normal file
268
src/build/beacon_positioning/Makefile
Normal file
@@ -0,0 +1,268 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ubuntu/ros2_ws/src/beacon_positioning
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ubuntu/ros2_ws/src/build/beacon_positioning
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
||||
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
|
||||
.PHONY : test/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles/progress.marks
|
||||
$(MAKE) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ubuntu/ros2_ws/src/build/beacon_positioning/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
$(MAKE) -f CMakeFiles/Makefile2 clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
$(MAKE) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
$(MAKE) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named tracker_position
|
||||
|
||||
# Build rule for target.
|
||||
tracker_position: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 tracker_position
|
||||
.PHONY : tracker_position
|
||||
|
||||
# fast build rule for target.
|
||||
tracker_position/fast:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/build
|
||||
.PHONY : tracker_position/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named beacon_positioning_uninstall
|
||||
|
||||
# Build rule for target.
|
||||
beacon_positioning_uninstall: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 beacon_positioning_uninstall
|
||||
.PHONY : beacon_positioning_uninstall
|
||||
|
||||
# fast build rule for target.
|
||||
beacon_positioning_uninstall/fast:
|
||||
$(MAKE) -f CMakeFiles/beacon_positioning_uninstall.dir/build.make CMakeFiles/beacon_positioning_uninstall.dir/build
|
||||
.PHONY : beacon_positioning_uninstall/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named uninstall
|
||||
|
||||
# Build rule for target.
|
||||
uninstall: cmake_check_build_system
|
||||
$(MAKE) -f CMakeFiles/Makefile2 uninstall
|
||||
.PHONY : uninstall
|
||||
|
||||
# fast build rule for target.
|
||||
uninstall/fast:
|
||||
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
|
||||
.PHONY : uninstall/fast
|
||||
|
||||
src/tracker_position.o: src/tracker_position.cpp.o
|
||||
|
||||
.PHONY : src/tracker_position.o
|
||||
|
||||
# target to build an object file
|
||||
src/tracker_position.cpp.o:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/src/tracker_position.cpp.o
|
||||
.PHONY : src/tracker_position.cpp.o
|
||||
|
||||
src/tracker_position.i: src/tracker_position.cpp.i
|
||||
|
||||
.PHONY : src/tracker_position.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/tracker_position.cpp.i:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/src/tracker_position.cpp.i
|
||||
.PHONY : src/tracker_position.cpp.i
|
||||
|
||||
src/tracker_position.s: src/tracker_position.cpp.s
|
||||
|
||||
.PHONY : src/tracker_position.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/tracker_position.cpp.s:
|
||||
$(MAKE) -f CMakeFiles/tracker_position.dir/build.make CMakeFiles/tracker_position.dir/src/tracker_position.cpp.s
|
||||
.PHONY : src/tracker_position.cpp.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... install/strip"
|
||||
@echo "... install/local"
|
||||
@echo "... install"
|
||||
@echo "... list_install_components"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... edit_cache"
|
||||
@echo "... test"
|
||||
@echo "... tracker_position"
|
||||
@echo "... beacon_positioning_uninstall"
|
||||
@echo "... uninstall"
|
||||
@echo "... src/tracker_position.o"
|
||||
@echo "... src/tracker_position.i"
|
||||
@echo "... src/tracker_position.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# generated from ament/cmake/core/templates/nameConfig-version.cmake.in
|
||||
set(PACKAGE_VERSION "0.0.0")
|
||||
|
||||
set(PACKAGE_VERSION_EXACT False)
|
||||
set(PACKAGE_VERSION_COMPATIBLE False)
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_EXACT True)
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
@@ -0,0 +1,42 @@
|
||||
# generated from ament/cmake/core/templates/nameConfig.cmake.in
|
||||
|
||||
# prevent multiple inclusion
|
||||
if(_beacon_positioning_CONFIG_INCLUDED)
|
||||
# ensure to keep the found flag the same
|
||||
if(NOT DEFINED beacon_positioning_FOUND)
|
||||
# explicitly set it to FALSE, otherwise CMake will set it to TRUE
|
||||
set(beacon_positioning_FOUND FALSE)
|
||||
elseif(NOT beacon_positioning_FOUND)
|
||||
# use separate condition to avoid uninitialized variable warning
|
||||
set(beacon_positioning_FOUND FALSE)
|
||||
endif()
|
||||
return()
|
||||
endif()
|
||||
set(_beacon_positioning_CONFIG_INCLUDED TRUE)
|
||||
|
||||
# output package information
|
||||
if(NOT beacon_positioning_FIND_QUIETLY)
|
||||
message(STATUS "Found beacon_positioning: 0.0.0 (${beacon_positioning_DIR})")
|
||||
endif()
|
||||
|
||||
# warn when using a deprecated package
|
||||
if(NOT "" STREQUAL "")
|
||||
set(_msg "Package 'beacon_positioning' is deprecated")
|
||||
# append custom deprecation text if available
|
||||
if(NOT "" STREQUAL "TRUE")
|
||||
set(_msg "${_msg} ()")
|
||||
endif()
|
||||
# optionally quiet the deprecation message
|
||||
if(NOT ${beacon_positioning_DEPRECATED_QUIET})
|
||||
message(DEPRECATION "${_msg}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# flag package as ament-based to distinguish it after being find_package()-ed
|
||||
set(beacon_positioning_FOUND_AMENT_PACKAGE TRUE)
|
||||
|
||||
# include all config extra files
|
||||
set(_extras "")
|
||||
foreach(_extra ${_extras})
|
||||
include("${beacon_positioning_DIR}/${_extra}")
|
||||
endforeach()
|
||||
14
src/build/beacon_positioning/ament_cmake_core/package.cmake
Normal file
14
src/build/beacon_positioning/ament_cmake_core/package.cmake
Normal file
@@ -0,0 +1,14 @@
|
||||
set(_AMENT_PACKAGE_NAME "beacon_positioning")
|
||||
set(beacon_positioning_VERSION "0.0.0")
|
||||
set(beacon_positioning_MAINTAINER "sem <semmer99@gmail.com>")
|
||||
set(beacon_positioning_BUILD_DEPENDS "rclcpp" "std_msgs")
|
||||
set(beacon_positioning_BUILDTOOL_DEPENDS "ament_cmake")
|
||||
set(beacon_positioning_BUILD_EXPORT_DEPENDS "rclcpp" "std_msgs")
|
||||
set(beacon_positioning_BUILDTOOL_EXPORT_DEPENDS )
|
||||
set(beacon_positioning_EXEC_DEPENDS "rclcpp" "std_msgs")
|
||||
set(beacon_positioning_TEST_DEPENDS "ament_lint_auto" "ament_lint_common")
|
||||
set(beacon_positioning_GROUP_DEPENDS )
|
||||
set(beacon_positioning_MEMBER_OF_GROUPS )
|
||||
set(beacon_positioning_DEPRECATED "")
|
||||
set(beacon_positioning_EXPORT_TAGS)
|
||||
list(APPEND beacon_positioning_EXPORT_TAGS "<build_type>ament_cmake</build_type>")
|
||||
@@ -0,0 +1,4 @@
|
||||
# copied from
|
||||
# ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh
|
||||
|
||||
ament_prepend_unique_value AMENT_PREFIX_PATH "$AMENT_CURRENT_PREFIX"
|
||||
@@ -0,0 +1,14 @@
|
||||
# generated from ament/cmake/core/templates/nameConfig-version.cmake.in
|
||||
set(PACKAGE_VERSION "@PACKAGE_VERSION@")
|
||||
|
||||
set(PACKAGE_VERSION_EXACT False)
|
||||
set(PACKAGE_VERSION_COMPATIBLE False)
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_EXACT True)
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
|
||||
if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}")
|
||||
set(PACKAGE_VERSION_COMPATIBLE True)
|
||||
endif()
|
||||
@@ -0,0 +1,42 @@
|
||||
# generated from ament/cmake/core/templates/nameConfig.cmake.in
|
||||
|
||||
# prevent multiple inclusion
|
||||
if(_@PROJECT_NAME@_CONFIG_INCLUDED)
|
||||
# ensure to keep the found flag the same
|
||||
if(NOT DEFINED @PROJECT_NAME@_FOUND)
|
||||
# explicitly set it to FALSE, otherwise CMake will set it to TRUE
|
||||
set(@PROJECT_NAME@_FOUND FALSE)
|
||||
elseif(NOT @PROJECT_NAME@_FOUND)
|
||||
# use separate condition to avoid uninitialized variable warning
|
||||
set(@PROJECT_NAME@_FOUND FALSE)
|
||||
endif()
|
||||
return()
|
||||
endif()
|
||||
set(_@PROJECT_NAME@_CONFIG_INCLUDED TRUE)
|
||||
|
||||
# output package information
|
||||
if(NOT @PROJECT_NAME@_FIND_QUIETLY)
|
||||
message(STATUS "Found @PROJECT_NAME@: @PACKAGE_VERSION@ (${@PROJECT_NAME@_DIR})")
|
||||
endif()
|
||||
|
||||
# warn when using a deprecated package
|
||||
if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "")
|
||||
set(_msg "Package '@PROJECT_NAME@' is deprecated")
|
||||
# append custom deprecation text if available
|
||||
if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "TRUE")
|
||||
set(_msg "${_msg} (@PACKAGE_DEPRECATED@)")
|
||||
endif()
|
||||
# optionally quiet the deprecation message
|
||||
if(NOT ${@PROJECT_NAME@_DEPRECATED_QUIET})
|
||||
message(DEPRECATION "${_msg}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# flag package as ament-based to distinguish it after being find_package()-ed
|
||||
set(@PROJECT_NAME@_FOUND_AMENT_PACKAGE TRUE)
|
||||
|
||||
# include all config extra files
|
||||
set(_extras "@PACKAGE_CONFIG_EXTRA_FILES@")
|
||||
foreach(_extra ${_extras})
|
||||
include("${@PROJECT_NAME@_DIR}/${_extra}")
|
||||
endforeach()
|
||||
@@ -1,14 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>drone_sensors</name>
|
||||
<name>beacon_positioning</name>
|
||||
<version>0.0.0</version>
|
||||
<description>package for the environment sensors of the 5G drone (height meter, object detection)</description>
|
||||
<maintainer email="sem.hoeven@gmail.com">Sem van der Hoeven</maintainer>
|
||||
<description>ROS 2 package to read the Terabee Robot Positioning System beacons positions</description>
|
||||
<maintainer email="semmer99@gmail.com">sem</maintainer>
|
||||
<license>Apache License 2.0</license>
|
||||
|
||||
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||
|
||||
<depend>rclcpp</depend>
|
||||
<depend>std_msgs</depend>
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# Copyright 2014-2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import argparse
|
||||
from collections import OrderedDict
|
||||
import sys
|
||||
|
||||
from catkin_pkg.package import parse_package_string
|
||||
|
||||
|
||||
def main(argv=sys.argv[1:]):
|
||||
"""
|
||||
Extract the information from package.xml and make them accessible to CMake.
|
||||
|
||||
Parse the given package.xml file and
|
||||
print CMake code defining several variables containing the content.
|
||||
"""
|
||||
parser = argparse.ArgumentParser(
|
||||
description='Parse package.xml file and print CMake code defining '
|
||||
'several variables',
|
||||
)
|
||||
parser.add_argument(
|
||||
'package_xml',
|
||||
type=argparse.FileType('r', encoding='utf-8'),
|
||||
help='The path to a package.xml file',
|
||||
)
|
||||
parser.add_argument(
|
||||
'outfile',
|
||||
nargs='?',
|
||||
help='The filename where the output should be written to',
|
||||
)
|
||||
args = parser.parse_args(argv)
|
||||
|
||||
try:
|
||||
package = parse_package_string(
|
||||
args.package_xml.read(), filename=args.package_xml.name)
|
||||
except Exception as e:
|
||||
print("Error parsing '%s':" % args.package_xml.name, file=sys.stderr)
|
||||
raise e
|
||||
finally:
|
||||
args.package_xml.close()
|
||||
|
||||
lines = generate_cmake_code(package)
|
||||
if args.outfile:
|
||||
with open(args.outfile, 'w', encoding='utf-8') as f:
|
||||
for line in lines:
|
||||
f.write('%s\n' % line)
|
||||
else:
|
||||
for line in lines:
|
||||
print(line)
|
||||
|
||||
|
||||
def get_dependency_values(key, depends):
|
||||
dependencies = []
|
||||
dependencies.append((key, ' '.join(['"%s"' % str(d) for d in depends])))
|
||||
for d in depends:
|
||||
comparisons = [
|
||||
'version_lt',
|
||||
'version_lte',
|
||||
'version_eq',
|
||||
'version_gte',
|
||||
'version_gt']
|
||||
for comp in comparisons:
|
||||
value = getattr(d, comp, None)
|
||||
if value is not None:
|
||||
dependencies.append(('%s_%s_%s' % (key, str(d), comp.upper()),
|
||||
'"%s"' % value))
|
||||
return dependencies
|
||||
|
||||
|
||||
def generate_cmake_code(package):
|
||||
"""
|
||||
Return a list of CMake set() commands containing the manifest information.
|
||||
|
||||
:param package: catkin_pkg.package.Package
|
||||
:returns: list of str
|
||||
"""
|
||||
variables = []
|
||||
variables.append(('VERSION', '"%s"' % package.version))
|
||||
|
||||
variables.append((
|
||||
'MAINTAINER',
|
||||
'"%s"' % (', '.join([str(m) for m in package.maintainers]))))
|
||||
|
||||
variables.extend(get_dependency_values('BUILD_DEPENDS',
|
||||
package.build_depends))
|
||||
variables.extend(get_dependency_values('BUILDTOOL_DEPENDS',
|
||||
package.buildtool_depends))
|
||||
variables.extend(get_dependency_values('BUILD_EXPORT_DEPENDS',
|
||||
package.build_export_depends))
|
||||
variables.extend(get_dependency_values('BUILDTOOL_EXPORT_DEPENDS',
|
||||
package.buildtool_export_depends))
|
||||
variables.extend(get_dependency_values('EXEC_DEPENDS',
|
||||
package.exec_depends))
|
||||
variables.extend(get_dependency_values('TEST_DEPENDS',
|
||||
package.test_depends))
|
||||
variables.extend(get_dependency_values('GROUP_DEPENDS',
|
||||
package.group_depends))
|
||||
variables.extend(get_dependency_values('MEMBER_OF_GROUPS',
|
||||
package.member_of_groups))
|
||||
|
||||
deprecated = [e.content for e in package.exports
|
||||
if e.tagname == 'deprecated']
|
||||
variables.append(('DEPRECATED',
|
||||
'"%s"' % ((deprecated[0] if deprecated[0] else 'TRUE')
|
||||
if deprecated
|
||||
else '')))
|
||||
|
||||
lines = []
|
||||
lines.append('set(_AMENT_PACKAGE_NAME "%s")' % package.name)
|
||||
for (k, v) in variables:
|
||||
lines.append('set(%s_%s %s)' % (package.name, k, v))
|
||||
|
||||
lines.append('set(%s_EXPORT_TAGS)' % package.name)
|
||||
replaces = OrderedDict()
|
||||
replaces['${prefix}/'] = ''
|
||||
replaces['\\'] = '\\\\' # escape backslashes
|
||||
replaces['"'] = '\\"' # prevent double quotes to end the CMake string
|
||||
replaces[';'] = '\\;' # prevent semicolons to be interpreted as list separators
|
||||
for export in package.exports:
|
||||
export = str(export)
|
||||
for k, v in replaces.items():
|
||||
export = export.replace(k, v)
|
||||
lines.append('list(APPEND %s_EXPORT_TAGS "%s")' % (package.name, export))
|
||||
|
||||
return lines
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -0,0 +1,5 @@
|
||||
# copied from ament_cmake_core/cmake/environment_hooks/environment/path.sh
|
||||
|
||||
if [ -d "$AMENT_CURRENT_PREFIX/bin" ]; then
|
||||
ament_prepend_unique_value PATH "$AMENT_CURRENT_PREFIX/bin"
|
||||
fi
|
||||
@@ -0,0 +1,112 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# Copyright 2014-2015 Open Source Robotics Foundation, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
|
||||
from ament_package.templates import get_environment_hook_template_path
|
||||
from ament_package.templates import get_package_level_template_names
|
||||
from ament_package.templates import get_package_level_template_path
|
||||
from ament_package.templates import get_prefix_level_template_names
|
||||
from ament_package.templates import get_prefix_level_template_path
|
||||
|
||||
IS_WINDOWS = os.name == 'nt'
|
||||
|
||||
|
||||
def main(argv=sys.argv[1:]):
|
||||
"""
|
||||
Extract the information about templates provided by ament_package.
|
||||
|
||||
Call the API provided by ament_package and
|
||||
print CMake code defining several variables containing information about
|
||||
the available templates.
|
||||
"""
|
||||
parser = argparse.ArgumentParser(
|
||||
description='Extract information about templates provided by '
|
||||
'ament_package and print CMake code defining several '
|
||||
'variables',
|
||||
)
|
||||
parser.add_argument(
|
||||
'outfile',
|
||||
nargs='?',
|
||||
help='The filename where the output should be written to',
|
||||
)
|
||||
args = parser.parse_args(argv)
|
||||
|
||||
lines = generate_cmake_code()
|
||||
if args.outfile:
|
||||
basepath = os.path.dirname(args.outfile)
|
||||
if not os.path.exists(basepath):
|
||||
os.makedirs(basepath)
|
||||
with open(args.outfile, 'w') as f:
|
||||
for line in lines:
|
||||
f.write('%s\n' % line)
|
||||
else:
|
||||
for line in lines:
|
||||
print(line)
|
||||
|
||||
|
||||
def generate_cmake_code():
|
||||
"""
|
||||
Return a list of CMake set() commands containing the template information.
|
||||
|
||||
:returns: list of str
|
||||
"""
|
||||
variables = []
|
||||
|
||||
if not IS_WINDOWS:
|
||||
variables.append((
|
||||
'ENVIRONMENT_HOOK_LIBRARY_PATH',
|
||||
'"%s"' % get_environment_hook_template_path('library_path.sh')))
|
||||
else:
|
||||
variables.append(('ENVIRONMENT_HOOK_LIBRARY_PATH', ''))
|
||||
|
||||
ext = '.bat.in' if IS_WINDOWS else '.sh.in'
|
||||
variables.append((
|
||||
'ENVIRONMENT_HOOK_PYTHONPATH',
|
||||
'"%s"' % get_environment_hook_template_path('pythonpath' + ext)))
|
||||
|
||||
templates = []
|
||||
for name in get_package_level_template_names():
|
||||
templates.append('"%s"' % get_package_level_template_path(name))
|
||||
variables.append((
|
||||
'PACKAGE_LEVEL',
|
||||
templates))
|
||||
|
||||
templates = []
|
||||
for name in get_prefix_level_template_names():
|
||||
templates.append('"%s"' % get_prefix_level_template_path(name))
|
||||
variables.append((
|
||||
'PREFIX_LEVEL',
|
||||
templates))
|
||||
|
||||
lines = []
|
||||
for (k, v) in variables:
|
||||
if isinstance(v, list):
|
||||
lines.append('set(ament_cmake_package_templates_%s "")' % k)
|
||||
for vv in v:
|
||||
lines.append('list(APPEND ament_cmake_package_templates_%s %s)'
|
||||
% (k, vv))
|
||||
else:
|
||||
lines.append('set(ament_cmake_package_templates_%s %s)' % (k, v))
|
||||
# Ensure backslashes are replaced with forward slashes because CMake cannot
|
||||
# parse files with backslashes in it.
|
||||
return [l.replace('\\', '/') for l in lines]
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -0,0 +1 @@
|
||||
prepend-non-duplicate;AMENT_PREFIX_PATH;
|
||||
@@ -0,0 +1,46 @@
|
||||
# generated from ament_package/template/package_level/local_setup.bash.in
|
||||
|
||||
# source local_setup.sh from same directory as this file
|
||||
_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd)
|
||||
# provide AMENT_CURRENT_PREFIX to shell script
|
||||
AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd)
|
||||
# store AMENT_CURRENT_PREFIX to restore it before each environment hook
|
||||
_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX
|
||||
|
||||
# trace output
|
||||
if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then
|
||||
echo "# . \"$_this_path/local_setup.sh\""
|
||||
fi
|
||||
. "$_this_path/local_setup.sh"
|
||||
unset _this_path
|
||||
|
||||
# unset AMENT_ENVIRONMENT_HOOKS
|
||||
# if not appending to them for return
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks
|
||||
AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX
|
||||
# list all environment hooks of this package
|
||||
|
||||
# source all shell-specific environment hooks of this package
|
||||
# if not returning them
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
_package_local_setup_IFS=$IFS
|
||||
IFS=":"
|
||||
for _hook in $AMENT_ENVIRONMENT_HOOKS; do
|
||||
# restore AMENT_CURRENT_PREFIX for each environment hook
|
||||
AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX
|
||||
# restore IFS before sourcing other files
|
||||
IFS=$_package_local_setup_IFS
|
||||
. "$_hook"
|
||||
done
|
||||
unset _hook
|
||||
IFS=$_package_local_setup_IFS
|
||||
unset _package_local_setup_IFS
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
unset _package_local_setup_AMENT_CURRENT_PREFIX
|
||||
unset AMENT_CURRENT_PREFIX
|
||||
@@ -0,0 +1,2 @@
|
||||
source;share/beacon_positioning/environment/ament_prefix_path.sh
|
||||
source;share/beacon_positioning/environment/path.sh
|
||||
@@ -0,0 +1,133 @@
|
||||
# generated from ament_package/template/package_level/local_setup.sh.in
|
||||
|
||||
# since this file is sourced use either the provided AMENT_CURRENT_PREFIX
|
||||
# or fall back to the destination set at configure time
|
||||
: ${AMENT_CURRENT_PREFIX:="/home/ubuntu/ros2_ws/src/install/beacon_positioning"}
|
||||
if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then
|
||||
if [ -z "$COLCON_CURRENT_PREFIX" ]; then
|
||||
echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \
|
||||
"exist. Consider sourcing a different extension than '.sh'." 1>&2
|
||||
else
|
||||
AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX"
|
||||
fi
|
||||
fi
|
||||
|
||||
# function to append values to environment variables
|
||||
# using colons as separators and avoiding leading separators
|
||||
ament_append_value() {
|
||||
# arguments
|
||||
_listname="$1"
|
||||
_value="$2"
|
||||
#echo "listname $_listname"
|
||||
#eval echo "list value \$$_listname"
|
||||
#echo "value $_value"
|
||||
|
||||
# avoid leading separator
|
||||
eval _values=\"\$$_listname\"
|
||||
if [ -z "$_values" ]; then
|
||||
eval export $_listname=\"$_value\"
|
||||
#eval echo "set list \$$_listname"
|
||||
else
|
||||
# field separator must not be a colon
|
||||
_ament_append_value_IFS=$IFS
|
||||
unset IFS
|
||||
eval export $_listname=\"\$$_listname:$_value\"
|
||||
#eval echo "append list \$$_listname"
|
||||
IFS=$_ament_append_value_IFS
|
||||
unset _ament_append_value_IFS
|
||||
fi
|
||||
unset _values
|
||||
|
||||
unset _value
|
||||
unset _listname
|
||||
}
|
||||
|
||||
# function to prepend non-duplicate values to environment variables
|
||||
# using colons as separators and avoiding trailing separators
|
||||
ament_prepend_unique_value() {
|
||||
# arguments
|
||||
_listname="$1"
|
||||
_value="$2"
|
||||
#echo "listname $_listname"
|
||||
#eval echo "list value \$$_listname"
|
||||
#echo "value $_value"
|
||||
|
||||
# check if the list contains the value
|
||||
eval _values=\"\$$_listname\"
|
||||
_duplicate=
|
||||
_ament_prepend_unique_value_IFS=$IFS
|
||||
IFS=":"
|
||||
if [ "$AMENT_SHELL" = "zsh" ]; then
|
||||
ament_zsh_to_array _values
|
||||
fi
|
||||
for _item in $_values; do
|
||||
# ignore empty strings
|
||||
if [ -z "$_item" ]; then
|
||||
continue
|
||||
fi
|
||||
if [ "$_item" = "$_value" ]; then
|
||||
_duplicate=1
|
||||
fi
|
||||
done
|
||||
unset _item
|
||||
|
||||
# prepend only non-duplicates
|
||||
if [ -z "$_duplicate" ]; then
|
||||
# avoid trailing separator
|
||||
if [ -z "$_values" ]; then
|
||||
eval export $_listname=\"$_value\"
|
||||
#eval echo "set list \$$_listname"
|
||||
else
|
||||
# field separator must not be a colon
|
||||
unset IFS
|
||||
eval export $_listname=\"$_value:\$$_listname\"
|
||||
#eval echo "prepend list \$$_listname"
|
||||
fi
|
||||
fi
|
||||
IFS=$_ament_prepend_unique_value_IFS
|
||||
unset _ament_prepend_unique_value_IFS
|
||||
unset _duplicate
|
||||
unset _values
|
||||
|
||||
unset _value
|
||||
unset _listname
|
||||
}
|
||||
|
||||
# unset AMENT_ENVIRONMENT_HOOKS
|
||||
# if not appending to them for return
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
# list all environment hooks of this package
|
||||
ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/beacon_positioning/environment/ament_prefix_path.sh"
|
||||
ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/beacon_positioning/environment/path.sh"
|
||||
|
||||
# source all shell-specific environment hooks of this package
|
||||
# if not returning them
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
_package_local_setup_IFS=$IFS
|
||||
IFS=":"
|
||||
if [ "$AMENT_SHELL" = "zsh" ]; then
|
||||
ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
for _hook in $AMENT_ENVIRONMENT_HOOKS; do
|
||||
if [ -f "$_hook" ]; then
|
||||
# restore IFS before sourcing other files
|
||||
IFS=$_package_local_setup_IFS
|
||||
# trace output
|
||||
if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then
|
||||
echo "# . \"$_hook\""
|
||||
fi
|
||||
. "$_hook"
|
||||
fi
|
||||
done
|
||||
unset _hook
|
||||
IFS=$_package_local_setup_IFS
|
||||
unset _package_local_setup_IFS
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
# reset AMENT_CURRENT_PREFIX after each package
|
||||
# allowing to source multiple package-level setup files
|
||||
unset AMENT_CURRENT_PREFIX
|
||||
@@ -0,0 +1,59 @@
|
||||
# generated from ament_package/template/package_level/local_setup.zsh.in
|
||||
|
||||
AMENT_SHELL=zsh
|
||||
|
||||
# source local_setup.sh from same directory as this file
|
||||
_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)
|
||||
# provide AMENT_CURRENT_PREFIX to shell script
|
||||
AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd)
|
||||
# store AMENT_CURRENT_PREFIX to restore it before each environment hook
|
||||
_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX
|
||||
|
||||
# function to convert array-like strings into arrays
|
||||
# to wordaround SH_WORD_SPLIT not being set
|
||||
ament_zsh_to_array() {
|
||||
local _listname=$1
|
||||
local _dollar="$"
|
||||
local _split="{="
|
||||
local _to_array="(\"$_dollar$_split$_listname}\")"
|
||||
eval $_listname=$_to_array
|
||||
}
|
||||
|
||||
# trace output
|
||||
if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then
|
||||
echo "# . \"$_this_path/local_setup.sh\""
|
||||
fi
|
||||
# the package-level local_setup file unsets AMENT_CURRENT_PREFIX
|
||||
. "$_this_path/local_setup.sh"
|
||||
unset _this_path
|
||||
|
||||
# unset AMENT_ENVIRONMENT_HOOKS
|
||||
# if not appending to them for return
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks
|
||||
AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX
|
||||
# list all environment hooks of this package
|
||||
|
||||
# source all shell-specific environment hooks of this package
|
||||
# if not returning them
|
||||
if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then
|
||||
_package_local_setup_IFS=$IFS
|
||||
IFS=":"
|
||||
for _hook in $AMENT_ENVIRONMENT_HOOKS; do
|
||||
# restore AMENT_CURRENT_PREFIX for each environment hook
|
||||
AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX
|
||||
# restore IFS before sourcing other files
|
||||
IFS=$_package_local_setup_IFS
|
||||
. "$_hook"
|
||||
done
|
||||
unset _hook
|
||||
IFS=$_package_local_setup_IFS
|
||||
unset _package_local_setup_IFS
|
||||
unset AMENT_ENVIRONMENT_HOOKS
|
||||
fi
|
||||
|
||||
unset _package_local_setup_AMENT_CURRENT_PREFIX
|
||||
unset AMENT_CURRENT_PREFIX
|
||||
@@ -0,0 +1,4 @@
|
||||
source;share/beacon_positioning/local_setup.bash
|
||||
source;share/beacon_positioning/local_setup.dsv
|
||||
source;share/beacon_positioning/local_setup.sh
|
||||
source;share/beacon_positioning/local_setup.zsh
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user