diff --git a/Basics/ROS_basic.md b/Basics/ROS_basic.md new file mode 100644 index 0000000000000000000000000000000000000000..19b6ab21d953144efe195c84246886239af6ef9b --- /dev/null +++ b/Basics/ROS_basic.md @@ -0,0 +1,1219 @@ +# ROS古月居21讲 + +## ROS核心概念 + +### 1. 通信机制 + +#### 节点与节点管理器 + +节点(Node):执行单元 + +* 节点的命名必须唯一 +* 执行具体的任务进程 +* 可以是不同的语言,分布在不同的主机 + +节点管理器(ROS Master):控制中心 + +* 辅助节点查找,建立连接 +* 为节点提供命名和注册的服务 +* 提供参数服务器(提供全局变量的配置,为各个节点提供服务) + +#### 话题通信(Topic) + +两种通信方式之一,**单向数据传输**,异步通信机制 + +* 数据流向为发布者-订阅者,发布-订阅模型 +* 可以是多对多 +* 话题的数据是消息 +* 适用于数据传输 + +$$ +Publisher\rightarrow Subscriber +$$ + +消息(Message) + +* 一定的类型和数据结构 +* 使用`.msg`文件定义 + +#### 服务(Service) + +两种通信方式之一,**双向数据传输**,同步通信机制 + +* 客户端-服务器模型,客户端发送请求,服务器完成处理后返回应答数据 +* `.srv`文件定义请求和应答的数据结构 +* 适用于逻辑处理 +* 一对多的节点关系 + +#### 参数(Parameter) + +全局共享字典 + +* 可通过网络访问的共享且多变量字典 +* 适合存储静态的非二进制的参数 +* 不适合存储动态数据(ROS有动态参数配置) + +### 2. 文件系统 + +* 功能包(Package):ROS软件中的基本单元,包含节点源码,配置文件,数据定义等 +* 功能包清单(Package Manifest):功能包的基本信息 +* 元功能包(Meta Packages):功能包合集,多个用于同一目的的功能包 + +## ROS命令行工具的使用 + +`rosnode` + +`rostopic` + +`rosservice` + +这三个可以查看相关命令; + +```shell +$ rqt_graph +``` + +用于调用QT显示节点信息; + +`rosbag` + +* record +* play + +## 创建工作空间与功能包 + +### 1. 工作空间(workspace) + +* src:代码空间;源代码,配置文件; +* build:编译空间 +* devel:开发空间 +* install:安装空间 + +**创建工作空间** + +创建workspace文件夹,在其下创建src文件夹 + +`catkin`是`ros`的编译公具; + +在src文件夹中: + +```shell +$ catkin_init_workspace +``` + +**编译工作空间** + +回到workspace文件夹目录,编译:(在根目录编译) + +```shell +$ catkin_make +``` + +如果要安装,需要用 + +```shell +$ catkin_make install +``` + +可以联系CMake的编译安装过程; + +**设置环境变量** + +```shell +$ source devel/setup.bash +``` + +**检查环境变量** + +```shell +$ echo $ROS_PACKAGE_PATH +``` + +### 2. 功能包(package) + +首先要切换到SRC文件中: + +```shell +$ cd src/ +``` + +注意,工作空间下不能有相同名字的功能包 + +功能包的创建: + +```shell +$ catkin_create_pkg [depend1] [depend2] +``` + +* 功能包的名字 +* 功能包的依赖 + +功能包的编译: + +```shell +$ cd ~/workspace # 首先切换到工作空间根目录 +$ catkin_make +$ source ~/workspace/devel/setup/bash +``` + +如果要运行某个程序,需要先设置环境变量,`setup.bash` + +## 发布者Publisher的编程实现 + +**首先,创建功能包** + +**其次,创建发布者代码** + +* 初始化ros节点; +* 向ROS Master注册节点信息,包括发布的话题名和话题中的消息类型; +* 创建消息数据; +* 按照一定频率循环发布消息; + +![publisher](images/publisher.png) + +### 1. VS Code + ROS配置 + +参考:[VScode配置ROS开发环境](https://blog.csdn.net/qq_31918901/article/details/111474875?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-1.pc_relevant_paycolumn_v2&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-1.pc_relevant_paycolumn_v2&utm_relevant_index=1) + +其实google直接搜VS Code ROS配置,出来的东西都差不多,就用这个分析; + +需要在工作空间下打开`code` + +```shell +$ code. +``` + +需要配置c_cpp_properties.json,launch.json,tasks.json + +**`c_cpp_properties.json`** + +```json + "includePath": [ + "/usr/local/", + "/usr/include/", + "/opt/ros/melodic/include/" + ], + "compileCommands": "${workspaceFolder}/build/compile_commands.json", + "browse": { + "path": [ + "/usr/local/*", + "/usr/include/*", + "/opt/ros/melodic/include/*", + "/opt/ros/melodic/include/ros/*" + ] + } +``` + +大多的教程都提的加上 + +```json + "compileCommands": "${workspaceFolder}/build/compile_commands.json", +``` + +但是我的出问题,还是找不到ros的路径,后来加上了`includePath`,还是不行,最后把编译器换了,可以了; + +原本VS Code默认的编译器是GNU,但是上面的连接[VScode配置ROS开发环境](https://blog.csdn.net/qq_31918901/article/details/111474875?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-1.pc_relevant_paycolumn_v2&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-1.pc_relevant_paycolumn_v2&utm_relevant_index=1)给的是gcc和clang-arm64,没想到改了这个之后,居然可以了; + +考虑到VS Code是一个轻量级编辑器,而Clion比较吃内存,所以优先使用VS Code; + +Clion可以参考:[Clion + ROS配置官网教程](https://www.jetbrains.com/help/clion/ros-setup-tutorial.html); + +build文件夹下生成compile_commands.json文件: + +```shell +$ catkin_make -DCMAKE_EXPORT_COMPILE_COMMANDS=1 +``` + +**`tasks.json`** + +```json +{ + "version": "2.0.0", + "tasks": [ + { + "label": "catkin_make", //代表提示的描述性信息 + "type": "shell", //可以选择shell或者process,如果是shell代码是在shell里面运行一个命令,如果是process代表作为一个进程来运行 + "command": "catkin_make",//这个是我们需要运行的命令 + "args": [],//如果需要在命令后面加一些后缀,可以写在这里,比如-DCATKIN_WHITELIST_PACKAGES=“pac1;pac2” + "group": {"kind":"build","isDefault":true}, + "presentation": { + "reveal": "always"//可选always或者silence,代表是否输出信息 + }, + "problemMatcher": "$msCompile" + }, + ] +} +``` + +**`launch.json`** + +### 2. Clion + ROS配置 + +既然都是CMake,也可以用直接支持CMake的Clion作为IDE + +经过很久解决了Clion的bug之后发现,clion的配置似乎要更加快捷一点; + +一定要以官网的教程为参考!!![jetbrains ros-setup-tutorial](https://www.jetbrains.com/help/clion/ros-setup-tutorial.html#set-build-paths) + +其中两个最核心的步骤 + +* 让clion拥有ros workspace的环境变量 +* 更改CMake options + +其中第一步,需要先更新环境变量,并且在同一个窗口中启动clion(直接点图标启动另有方法) + +```shell +$ source devel/setup.bash +$ sh clion.sh +``` + +如果找不到clion.sh的位置,可以查找 + +```shell +$ locate clion.sh +``` + +由于我是snap安装的,直接打开snap的文件发现文件夹为空,ctrl+H也没用,所以只能这么找;大致如下: + +```shell +$ sh /snap/clion/178/bin/clion.sh +``` + +第二步,注意看官网的教程,选择一个CMakeList打开,且必须是功能包下的,不能是src下的CMakeList + +- In **Build directory**, set **/build**. + +这一步,我的会报错的,因为build已经作为src的dir了 + +- In **CMake options**, add `-DCATKIN_DEVEL_PREFIX:PATH=/devel`. + +切记,路经里没有`<>`符号 + +至此,配置完成,看起来比VS Code要简单一些。 + +**ERROR! Recording** + +再次打开的时候 + +```shell +$ source /devel/setup.bash +$ sh /bin/clion.sh +``` + +出现了python兼容版本的错误:`safe_execute_process.cmake:11`,网上的解释为https://www.codeleading.com/article/14894317433/ + +``` +ImportError: No module named catkin.environment_cache +CMake Error at /opt/ros/melodic/share/catkin/cmake/safe_execute_process.cmake:11 (message): + execute_process(/usr/bin/python2 + "/home/hazyparker/project/learn_ros/Basics/test2_ws/src/learning_topic/build/catkin_generated/generate_cached_setup.py") + returned error code 1 +``` + +我电脑默认的python版本确实不是ROS默认的2.7(我调成了3.6.9,忘了什么地方默认的2.7不行,于是我就更改了默认的python版本),但我首先没有去更改这个python版本,而是采用了下面这种解法:https://blog.csdn.net/qq_45616304/article/details/108992661,即 + +```shell +$ source /opt/ros/melodic/setup.bash +$ sh /bin/clion.sh +``` + +### 3. make运行 + +先写在clion配置好的情况下运行的方法 + +* Edit Configurations,改为executable的程序 +* rosrun + node +* 切换到根目录,`source devel/setup.bash` +* rosrun + pkg + exe + +```cpp +// init ros node + ros::init(argc, argv, "velocity_publisher"); + + // create node + ros::NodeHandle n; + + // create a publisher + ros::Publisher turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // set loop rate + ros::Rate loop_rate(10); + + int count = 0; + while(ros::ok()){ + // init msg Twist + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + + // publish message + turtle_vel_pub.publish(vel_msg); + ROS_INFO("publish turtle velocity command[%0.2f m/s, %0.2f rad/s]", + vel_msg.linear.x, vel_msg.angular.z); + + // set delay + loop_rate.sleep(); + } +``` + +首先,实例化一个`Publisher`对象: + +```cpp + ros::Publisher turtle_vel_pub; +``` + +然后在节点句柄创建完成后,定义发布话题的名称和数据类型以及队列长度: + +```cpp + // create a publisher + // publish topic named /turtle1/cmd_vel + // message type defined as geometry_msgs::Twist + turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); +``` + +最后定义消息,发送: + +```cpp + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + turtle_vel_pub.publish(vel_msg); +``` + +## 订阅者的编程实现 + +* 初始化ROS节点 +* 订阅需要的话题 +* 循环等待话题消息,接收到消息后进入回调函数 +* 在回调函数中完成消息处理 + +例子:订阅海龟的位姿信息 + +* 话题:/turtle1/pose +* 消息类型: turtlesim::Pose + +```cpp +void poseCallback(const turtlesim::Pose::ConstPtr& msg){ + // print message received + ROS_INFO("Turtle Pose: x: %0.6f, y: %0.6f", msg->x, msg->y); +} + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "pose_subscriber"); + + // create node handle + ros::NodeHandle n; + + // create a subscriber + // subscribe topic whose name is /turtle1/pose + // write callback function + ros::Subscriber pose_sub = n.subscribe("/turtle1/pose", 10, poseCallback); + + // looping, wait for callback getting data + ros::spin(); + + return 0; +} +``` + +* `spin()`是一个等待数据传来之后才进入回调函数,回调函数在subscriber里已经注册过了;直接ctrl+click点开`spin()`函数看; +* 回调函数的参数是一个指向消息的指针; +* 队列,保存从publisher传来的数据,如果超过10,淘汰时间戳最老的数据; +* 在main函数中,传给回调函数的是一个回调函数的函数名,实际上是指针;有点像中断,一旦有subscriber订阅的消息进来,就进入到回调函数作处理; + +## 话题消息的定义和使用 + +完成消息的自定义和发布订阅的使用,由publisher发布,subscriber接受信息 + +话题消息: +$$ +Publisher\rightarrow Subscriber +$$ + +### 1. 自定义话题消息 + +自定义话题消息分为以下几步: + +* 定义msg文件 +* 在package.xml里添加依赖 +* 在CMakeList添加编译选项 +* 编译 + +**定义`msg`文件** + +* 文件名必须命名为`msg`,且放在具体功能包的目录下;别的命名会报错; +* 内容不能缩进,不能大写(有待考证) + +比如下面的包含姓名,性别和年龄消息的定义: + +``` +string name +uint8 sex +uint8 age + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 +``` + +**在`package.xml`中添加功能包依赖** + +注意看`xml`文件中写的例子和用法: + +```xml + + + + + + +``` + +对以依赖,要build+exec,即编译+执行;编译的依赖和运行的依赖可能不一样; + +在该文件里已经包含了创建功能包时添加的依赖,比如roscpp,rospy,std_msgs这种基本的,如果需要添加其他依赖,就在package.xml文件修改 + +在这里添加两个动态产生`message`的功能包: + +```xml +message_generation +message_runtime +``` + +**在`CMakeList.txt`中添加编译选项** + +将`message_generation`添加到找包中: + +```cmake +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) +``` + +声明消息文件,参考ROS官方的写法 + +```cmake +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) +``` + +大致对于topic,service和action三种通信机制(action是通信机制?),声明消息文件的方法是,**`add_xxx_files()+generate_messages()`** + +```cmake +add_message_files( + FILES Person.msg +) + +generate_messages( + DEPENDENCIES std_msgs +) +``` + +最后在`catkin_package`中添加`message_runtime`的运行依赖 + +```cmake +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) +``` + +原本这行是注释掉的,因为创建功能包时已经添加好了这些依赖(我的猜想); + +需要添加其他依赖的时候,取消注释,加到后面就行了; + +**编译** + +```shell +$ catkin_make +``` + +之后在`devel/include/pkg`里面会生成`Person.h`,里面写了详细的调用方法; + +### 2. Publisher and Subscriber + +### 3. make + +可执行文件与动态生成的程序也产生依赖 + +```cmake +add_executable(person_publisher src/person_publisher.cpp) +target_link_libraries(person_publisher ${catkin_LIBRARIES}) +add_dependencies(person_publisher ${PROJECT_NAME}_generate_messages_cpp) + +add_executable(person_subscriber src/person_subscriber.cpp) +target_link_libraries(person_subscriber ${catkin_LIBRARIES}) +add_dependencies(person_subscriber ${PROJECT_NAME}_generate_messages_cpp) +``` + +要和自定义消息作连接,必须添加: + +```cmake +add_dependencies(person_subscriber ${PROJECT_NAME}_generate_messages_cpp) +``` + +![person_info](images/person_info.png) + +## 客户端Client的编程实现 + +* 初始化ROS节点 +* 设置阻塞函数,直到发现`\spawn`服务时才向下进行,否则截止在该位置 +* 发现服务之后创建客户端 +* 设置数据 +* 请求服务调用 + +阻塞函数`waitForService(service name)`: + +```cpp + // wait until service /spawn is founded + ros::service::waitForService("/spawn"); +``` + +创建客户端,连接到服务: + +```cpp + // create a client, connecting to service /spawn + ros::ServiceClient add_turtle = n.serviceClient("/spawn"); +``` + +设置数据和请求服务调用: + +```cpp +// init request data + turtlesim::Spawn srv; + srv.request.x = 2.0; + srv.request.y = 2.0; + srv.request.name = "turtle2"; + + // call request service + ROS_INFO("call service to spawn turtle[x:%0.6f, y:%0.6f, name:%s]", + srv.request.x, srv.request.y, srv.request.name.c_str()); + add_turtle.call(srv); +``` + +结果(示例): + +![client](images/client.png) + +## 服务器Server的编程实现 + +$$ +Client(Terminal)\overset{Request}{\underset{Response}{\longleftrightarrow}}Service\overset{Request}{\underset{Response}{\longleftrightarrow}}Server +$$ + + + +* Client发布request来控制Server +* Server接收指令,并且完成指令的发送 +* 针对服务的标准定义,Trigger,`std_srvs::Trigger`,是一个服务数据类型 + +过程实现如下: + +* 创建ROS节点 +* 创建节点句柄 +* 创建服务端,并注册回调函数`ros::ServiceServer command_service = n.advertiseService("/turtle_command", commandCallback);` +* `commandCallback`是回调函数 +* 创建Publisher,发布`/turtle1/cmd_vel`的消息 +* 如果收到了请求,触发了回调函数,向下进行;否则,循环等待回调函数; +* 回调函数中改变标记位的bool值,然后发送反馈信息 + +### 1. 回调函数定义 + +```cpp +bool commandCallback(std_srvs::Trigger::Request &req, + std_srvs::Trigger::Response &res){ + // use as flag + pubCommand = !pubCommand; + + // show request data + ROS_INFO("publish turtle velocity command [%s]", pubCommand == true? "yes":"no"); + + // set feedback data + res.success = true; + res.message = "Changed turtle command state..."; + + return true; +} +``` + +注意`std_srv/Trigger`的结构,可以使用`rossrv show std_srvs/Trigger`命令查看: + +```shell +--- +bool success +string message +``` + +可以看到包含两个数据,在这里`Request`没用到,因为只是发送,没有请求; + +### 2. Server + +```cpp + // create a server named /turtle_command + // define callback function "commandCallback" + ros::ServiceServer command_service = n.advertiseService("/turtle_command", commandCallback); +``` + +### 3. make + +在这里详细地写一遍; + +首先打开ros: + +```shell +$ roscore +``` + +其次进行编译(切换到工作空间根目录): + +```shell +$ cd xxx +$ catkin_make +``` + +然后**更新环境变量**: + +```shell +$ source devel/setup.bash +``` + +如果在`.bashrc`里修改过了,就很方便; + +并且运行相关节点,比如这个示例用的是`turtle`: + +```shell +$ rosrun turtlesim turtlesim_node +``` + +最后运行相关功能包里面编译生成的可执行文件 + +```shell +$ rosrun [package name] [exe name] +``` + +## 服务数据的定义和使用 + +比如`spin()`和`Trigger`,就是服务数据的类型; + +可以回想`.msg`的定义; +$$ +Client(Terminal)\overset{Request}{\underset{Response}{\longleftrightarrow}}Service\overset{Request}{\underset{Response}{\longleftrightarrow}}Server +$$ + +### 1. 自定义服务数据 + +**首先定义`srv`文件** + +由于数据分为`request`和`response`两部分,需要用`---`分隔 + +首先在功能包的目录下新建`srv`文件夹; + +其次新建`srv`文件 + +```shell +$ touch Person.srv +``` + +最后编辑`srv`文件 + +**在`package.xml`文件中添加功能包依赖** + +在这里添加两个动态产生`message`的功能包: + +```xml +message_generation +message_runtime +``` + +**在`CMakeList.txt`中添加编译选项** + +首先,将`message_generation`添加到找包中: + +```cmake +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) +``` + +其次,添加服务文件 + +```cmake +add_service_files(FILES [filename]) +generate_messages(DEPENDENCIES std_msgs) # create .h file +``` + +最后在`catkin_package`中添加`message_runtime`的运行依赖 + +```cmake +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) +``` + +**编译** + +```shell +$ catkin_make +``` + +之后在`devel/include/pkg`里面会生成`Person.h`,里面写了详细的调用方法;还生成了两个request和response的头文件; + +**ERROR Recording!** + +生成的`srv`在编译之后,在`devel/include/package_name`里生成`.h`头文件; + +但是在`.cpp`文件里,`#include "package_name/Person.h"`报错; + +我打开一看,发现功能包的src下面的include里面确实一个文件没有,但是`devel/include/package_name`里有`.h`头文件;而且另一个功能包完全可以找到文件; + +最后发现新建的功能包少了`.catkin`,因为在clion配置时,我的`CMake Options`写成了: + + `DCATKIN_DEVEL_PREFIX:PATH=/devel` + +实际上却是: + + `-DCATKIN_DEVEL_PREFIX:PATH=/devel`,少了个`-` + +太头疼了这个bug...比对了好久 + +**CMakeList** + +添加动态生成cpp的依赖 + +```cmake +add_executable(person_client src/person_client.cpp) +target_link_libraries(person_client ${catkin_LIBRARIES}) +add_dependencies(person_client ${PROJECT_NAME}_gencpp) + +add_executable(person_server src/person_server.cpp) +target_link_libraries(person_server ${catkin_LIBRARIES}) +add_dependencies(person_server ${PROJECT_NAME}_gencpp) +``` + +注意此处和话题消息添加的依赖不一样。 + +### 2. Client and Server + +Client: + +```cpp + // wait for service "/show_person" + // then create a new client, connect it + ros::service::waitForService("/show_person"); + ros::ServiceClient person_client = n.serviceClient("/show_person"); + + // init request data of learning_service::Person + learning_service::Person srv; + srv.request.name = "Tom"; + srv.request.age = 20; + srv.request.sex = learning_service::Person::Request::male; + + // call request + ROS_INFO("Call service to show person[name:%s, age:%d, sex:%d]", + srv.request.name.c_str(), srv.request.age, srv.request.sex); + person_client.call(srv); + + // show calling result + ROS_INFO("show person result: %s", srv.response.result.c_str()); +``` + +Server: + +```cpp + // create a server named "/show_person" + // define callback function personCallback + ros::ServiceServer person_service = n.advertiseService("/show_person", personCallback); + + // loop, waiting for callback function + ROS_INFO("ready to show person information"); + ros::spin(); +``` + +### 3. make + +```shell +$ catkin_make +``` + +要注意环境变量 + +```shell +$ rosrun learning_service person_client +$ rosrun learning_service person_server +``` + +![service](images/service.png) + +## 参数的使用与编程方法 + +参数模型:全局字典,保存一些全局配置参数;简单理解为全局变量的存储空间; + +创建新的功能包: + +```shell +$ catkin_create_pkg learning_parameter roscpp rospy std_srvs +``` + +### 1. `rosparam` + +使用`rosparam`列出配置参数: + +```shell +$ rosparam list +``` + +获得配置参数: + +```shell +$ rosparam get [param] +``` + +修改配置参数,使用service更新: + +```shell +$ rosparam set [param] [value] +$ rosservice call /clear "{}" +``` + +保存参数(保存到当前终端的路径): + +```shell +$ rosparam dump [file name].yaml +``` + +加载配置文件: + +```shell +$ rosparam load [file name].yaml +``` + +删除参数: + +```shell +$ rosparam delete [param name] +``` + +### 2. 编程实现 + +```cpp + // get background RGB param + int red = 0, green = 0, blue = 0; + ros::param::get("/turtlesim/background_r", red); + ros::param::get("/turtlesim/background_g", green); + ros::param::get("/turtlesim/background_b", blue); +``` + +## ROS中的坐标系管理系统 + +### 1. `tf`功能包 + +相当于封装了底层的矩阵变换; + +* 广播TF变换 +* 监听TF变换 + +安装示例功能包: + +```shell +$ sudo apt-get install ros-melodic-turtle-tf +``` + +一般已经安装(都是desktop-full); + +启动海龟跟随脚本: + +```shell +$ roslaunch turtle_tf turtle_tf_demo.launch +``` + +三种可视化方式:view_frames,echo,rviz + +**使用`view_frames`查看坐标系连接:** + +```shell +$ rosrun tf view_frames +``` + +会生成一个pdf,路径在当前终端路径下; + + + +![frame](images/frame.png) + +* world是世界坐标系 +* 可以查看tf是不是连通,坐标系之间的关系是不是建立成功 + +**使用`rosrun tf tf_echo [axis1] [axis2]`查看两个坐标系之间的变换关系:** + +```shell +$ rosrun tf tf_echo turtle1 turtle2 +``` + +![echo](images/echo.png) + +* 内容包含平移和旋转矩阵 +* 旋转矩阵用了三种方式描述,有四元数和普通的旋转向量 + +**使用RViz:** + +```shell +$ rosrun rviz rviz -d `rospack find turtle_tf` /rviz/turtle_rviz.rviz +``` + +![rviz](images/rviz.png) + +### 2. 广播与监听的编程实现 + +**如何实现一个tf广播器:** + +* 定义TF广播器(Transform Broadcaster) +* 创建坐标变换值 +* 发布坐标变换(send Transform) + +定义tf广播器: + +```cpp + // create tf broadcaster + static tf::TransformBroadcaster br; +``` + +创建坐标变换值: + +```cpp + // init tf data + tf::Transform transform; + transform.setOrigin(tf::Vector3(msg->x, msg->y, 0.0)); + tf::Quaternion q; + q.setRPY(0, 0, msg->theta); + transform.setRotation(q); +``` + +发布坐标变换: + +```cpp + // broadcast tf data between world and turtle(store in transform) + // describe axis relationship of world and turtle_name + // from now to next 10 seconds + br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), "world", turtle_name)); +``` + +**如何实现一个tf监听器:** + +* 定义TF监听器 +* 查找坐标变换 + +定义监听器: + +```cpp +// create tf listener + tf::TransformListener transformListener; +``` + +查找坐标变换: + +```cpp + tf::StampedTransform transform; + transformListener.waitForTransform("/turtle2", "/turtle1", ros::Time(0), ros::Duration(3.0)); + transformListener.lookupTransform("/turtle2", "/turtle1", ros::Time(0), transform); +``` + +### 3. make + +[ros的重映射](https://zhuanlan.zhihu.com/p/80366497) + +```shell +$ rosrun learning_tf turtle_tf_broadcaster __name:=turtle1_tf_broadcaster /turtle1 +$ rosrun learning_tf turtle_tf_broadcaster __name:=turtle2_tf_broadcaster /turtle2 +``` + +` __name:turtle1_tf_broadcaster`会取代掉程序中定义的节点名字,但是功能是一样的,这样同样的程序可以运行两次; + +最后查询两个坐标系之间的关系,给`turtle2`发送速度指令使其移动; + +```shell +$ rosrun learning_tf turtle_tf_listener +``` + +也可以使用键盘控制,来观察一下运动跟随情况; + +![tf_result_show](images/tf.png) + +## `launch`启动文件的使用方法 + +快速启动指令,节点;通过XML文件实现多节点的配置和启动; + +且`launch`可自动启动`roscore`; + +### 1. 语法 + +**launch和node:** + +```xml + + + + +``` + +* pkg:节点所在的功能包名称 +* type:节点的可执行文件名称 +* name:节点运行时的名称,相当于程序中`ros::init()`第三个参数; + +**参数设置:** + +```xml + +``` + +* 设置ROS运行中的参数,存储在参数服务器中 + +```xml + +``` + +* 加载文件中的多个参数,存储在参数服务器 + +```xml + +``` + +* arg(argument)仅限launch文件内部的局部变量,仅限于launch文件使用 +* 参数分别是参数名和参数值 + +arg的调用: + +```xml + +``` + +**重映射remap:** + +```xml + +``` + +* 把原来的命名改为现在的命名 +* 原来的命名则不复存在 + +**嵌套include:** + +```xml + +``` + +* 用于包含其他launch文件 + +具体信息参考官网http://wiki.ros.org/roslaunch/XML + +### 2. 例子 + +首先新建功能包(也可以直接用现有的); + +在src目录下新建`launch`文件夹,里面存放具体的launch文件; + +编写launch文件; + +运行; + +```shell +$ catkin_make +$ source devel/setup.bash +$ roslaunch learning_launch simple.launch +``` + +simple.launch如下: + +```xml + + + + +``` + +turtlesim_parameter_config.launch如下: + +```xml + + + + + + + + + + + + + + +``` + +* 运行之后通过`rosparam list`命令,可以查看到参数管理器里面新增的参数; +* param写到node内部,则沿用node的命名空间 +* param写到node外部,有自己的命名空间 +* 因此可能有多个命名空间 diff --git a/Basics/images/client.png b/Basics/images/client.png new file mode 100644 index 0000000000000000000000000000000000000000..a0184c461d1a93b57aa48424d405dbf6722f0c1f Binary files /dev/null and b/Basics/images/client.png differ diff --git a/Basics/images/echo.png b/Basics/images/echo.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b360a9164e89bd647a1bac382279305d5b59ae Binary files /dev/null and b/Basics/images/echo.png differ diff --git a/Basics/images/frame.png b/Basics/images/frame.png new file mode 100644 index 0000000000000000000000000000000000000000..0c52287b8b142903f6a4eed4b1de945a56418890 Binary files /dev/null and b/Basics/images/frame.png differ diff --git a/Basics/images/person_info.png b/Basics/images/person_info.png new file mode 100644 index 0000000000000000000000000000000000000000..3fedd6ffba15d1b7cc898e468e7b04a6ae5770a8 Binary files /dev/null and b/Basics/images/person_info.png differ diff --git a/Basics/images/publisher.png b/Basics/images/publisher.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9d1af2f812ae3c98ef8eb447510e56a860df68 Binary files /dev/null and b/Basics/images/publisher.png differ diff --git a/Basics/images/rviz.png b/Basics/images/rviz.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0d0268e090b195fc32e54793dab30684f88ef9 Binary files /dev/null and b/Basics/images/rviz.png differ diff --git a/Basics/images/service.png b/Basics/images/service.png new file mode 100644 index 0000000000000000000000000000000000000000..a051c414e5886b15d0bd21cb5d110241ba4ece85 Binary files /dev/null and b/Basics/images/service.png differ diff --git a/Basics/images/tf.png b/Basics/images/tf.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e151064629ab2a09c3ea0eaaed9f90071555c6 Binary files /dev/null and b/Basics/images/tf.png differ diff --git a/Basics/README.md b/Basics/ros_com.md similarity index 99% rename from Basics/README.md rename to Basics/ros_com.md index 8a0640b6cc02f3f0f84d1544a00bae696807aaa1..e2405249f6bb03abf7ee88cd114b302b7b6525cb 100644 --- a/Basics/README.md +++ b/Basics/ros_com.md @@ -1,4 +1,4 @@ -# ROS基础认知 +# ROS进程间通讯 在这里我准备大概说一说ROS的核心,进程间通讯。 diff --git a/Basics/ros_ws/.catkin_workspace b/Basics/ros_ws/.catkin_workspace new file mode 100644 index 0000000000000000000000000000000000000000..52fd97e7ea4bd421af3f7dacb539d241bcee6583 --- /dev/null +++ b/Basics/ros_ws/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Basics/ros_ws/build/.built_by b/Basics/ros_ws/build/.built_by new file mode 100644 index 0000000000000000000000000000000000000000..2e212dd304b5097120ab9fa2ade549804768ad5f --- /dev/null +++ b/Basics/ros_ws/build/.built_by @@ -0,0 +1 @@ +catkin_make \ No newline at end of file diff --git a/Basics/ros_ws/build/CATKIN_IGNORE b/Basics/ros_ws/build/CATKIN_IGNORE new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/ros_ws/build/CMakeCache.txt b/Basics/ros_ws/build/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa9688017282bcba9ef9c4334841d4f3c89f035f --- /dev/null +++ b/Basics/ros_ws/build/CMakeCache.txt @@ -0,0 +1,571 @@ +# This is the CMakeCache file. +# For build in directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build +# 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 +######################## + +//Builds the googlemock subproject +BUILD_GMOCK:BOOL=ON + +//Builds the googletest subproject +BUILD_GTEST:BOOL=OFF + +//Build shared libraries (DLLs). +BUILD_SHARED_LIBS:BOOL=ON + +//List of ';' separated packages to exclude +CATKIN_BLACKLIST_PACKAGES:STRING= + +//catkin devel space +CATKIN_DEVEL_PREFIX:PATH=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel + +//Catkin enable testing +CATKIN_ENABLE_TESTING:BOOL=ON + +//Catkin skip testing +CATKIN_SKIP_TESTING:BOOL=OFF + +//Replace the CMake install command with a custom implementation +// using symlinks instead of copying resources +CATKIN_SYMLINK_INSTALL:BOOL=OFF + +//List of ';' separated packages to build +CATKIN_WHITELIST_PACKAGES:STRING= + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +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-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=Yes + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/home/hazyparker/project/learn_ros/Basics/ros_ws/install + +//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. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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_NAME:STATIC=Project + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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 program. +DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND + +//Path to a program. +EMPY_EXECUTABLE:FILEPATH=/usr/bin/empy + +//Empy script +EMPY_SCRIPT:STRING=/usr/bin/empy + +//The directory containing a CMake configuration file for GMock. +GMock_DIR:PATH=GMock_DIR-NOTFOUND + +//Path to a file. +GTEST_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +GTEST_LIBRARY:FILEPATH=GTEST_LIBRARY-NOTFOUND + +//Path to a library. +GTEST_LIBRARY_DEBUG:FILEPATH=GTEST_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +GTEST_MAIN_LIBRARY:FILEPATH=GTEST_MAIN_LIBRARY-NOTFOUND + +//Path to a library. +GTEST_MAIN_LIBRARY_DEBUG:FILEPATH=GTEST_MAIN_LIBRARY_DEBUG-NOTFOUND + +//lsb_release executable was found +LSB_FOUND:BOOL=TRUE + +//Path to a program. +LSB_RELEASE_EXECUTABLE:FILEPATH=/usr/bin/lsb_release + +//Path to a program. +NOSETESTS:FILEPATH=/usr/bin/nosetests-2.7 + +//Path to a program. +PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 + +//Specify specific Python version to use ('major.minor' or 'major') +PYTHON_VERSION:STRING=2 + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/build + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/src + +//Path to a library. +RT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.so + +//Enable debian style python package layout +SETUPTOOLS_DEB_LAYOUT:BOOL=ON + +//Name of the computer/site where compile is being run +SITE:STRING=hazy-LenovoAir14 + +//LSB Distrib tag +UBUNTU:BOOL=TRUE + +//LSB Distrib - codename tag +UBUNTU_BIONIC:BOOL=TRUE + +//Path to a file. +_gmock_INCLUDES:FILEPATH=/usr/include/gmock/gmock.h + +//Path to a file. +_gmock_SOURCES:FILEPATH=/usr/src/gmock/src/gmock.cc + +//Path to a file. +_gtest_INCLUDES:FILEPATH=/usr/include/gtest/gtest.h + +//Path to a file. +_gtest_SOURCES:FILEPATH=/usr/src/gtest/src/gtest.cc + +//The directory containing a CMake configuration file for catkin. +catkin_DIR:PATH=/opt/ros/melodic/share/catkin/cmake + +//The directory containing a CMake configuration file for cpp_common. +cpp_common_DIR:PATH=/opt/ros/melodic/share/cpp_common/cmake + +//The directory containing a CMake configuration file for geometry_msgs. +geometry_msgs_DIR:PATH=/opt/ros/melodic/share/geometry_msgs/cmake + +//Value Computed by CMake +gmock_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock + +//Dependencies for the target +gmock_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +gmock_SOURCE_DIR:STATIC=/usr/src/googletest/googlemock + +//Build all of Google Mock's own tests. +gmock_build_tests:BOOL=OFF + +//Dependencies for the target +gmock_main_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +googletest-distribution_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest + +//Value Computed by CMake +googletest-distribution_SOURCE_DIR:STATIC=/usr/src/googletest + +//Value Computed by CMake +gtest_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest + +//Dependencies for the target +gtest_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +gtest_SOURCE_DIR:STATIC=/usr/src/googletest/googletest + +//Build gtest's sample programs. +gtest_build_samples:BOOL=OFF + +//Build all of gtest's own tests. +gtest_build_tests:BOOL=OFF + +//Disable uses of pthreads in gtest. +gtest_disable_pthreads:BOOL=OFF + +//Use shared (DLL) run-time lib even when Google Test is built +// as static lib. +gtest_force_shared_crt:BOOL=OFF + +//Build gtest with internal symbols hidden in shared libraries. +gtest_hide_internal_symbols:BOOL=OFF + +//Dependencies for the target +gtest_main_LIB_DEPENDS:STATIC=general;-lpthread;general;gtest; + +//Value Computed by CMake +learning_topic_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic + +//Value Computed by CMake +learning_topic_SOURCE_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic + +//Path to a library. +lib:FILEPATH=/opt/ros/melodic/lib/libxmlrpcpp.so + +//The directory containing a CMake configuration file for message_runtime. +message_runtime_DIR:PATH=/opt/ros/melodic/share/message_runtime/cmake + +//The directory containing a CMake configuration file for rosconsole. +rosconsole_DIR:PATH=/opt/ros/melodic/share/rosconsole/cmake + +//The directory containing a CMake configuration file for roscpp. +roscpp_DIR:PATH=/opt/ros/melodic/share/roscpp/cmake + +//The directory containing a CMake configuration file for roscpp_serialization. +roscpp_serialization_DIR:PATH=/opt/ros/melodic/share/roscpp_serialization/cmake + +//The directory containing a CMake configuration file for roscpp_traits. +roscpp_traits_DIR:PATH=/opt/ros/melodic/share/roscpp_traits/cmake + +//The directory containing a CMake configuration file for rosgraph_msgs. +rosgraph_msgs_DIR:PATH=/opt/ros/melodic/share/rosgraph_msgs/cmake + +//The directory containing a CMake configuration file for rospy. +rospy_DIR:PATH=/opt/ros/melodic/share/rospy/cmake + +//The directory containing a CMake configuration file for rostime. +rostime_DIR:PATH=/opt/ros/melodic/share/rostime/cmake + +//The directory containing a CMake configuration file for std_msgs. +std_msgs_DIR:PATH=/opt/ros/melodic/share/std_msgs/cmake + +//The directory containing a CMake configuration file for std_srvs. +std_srvs_DIR:PATH=/opt/ros/melodic/share/std_srvs/cmake + +//The directory containing a CMake configuration file for turtlesim. +turtlesim_DIR:PATH=/opt/ros/melodic/share/turtlesim/cmake + +//The directory containing a CMake configuration file for xmlrpcpp. +xmlrpcpp_DIR:PATH=/opt/ros/melodic/share/xmlrpcpp/cmake + + +######################## +# INTERNAL cache entries +######################## + +//catkin environment +CATKIN_ENV:INTERNAL=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/env_cached.sh +CATKIN_TEST_RESULTS_DIR:INTERNAL=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/test_results +//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/hazyparker/project/learn_ros/Basics/ros_ws/build +//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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//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 +//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 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Have symbol pthread_create +CMAKE_HAVE_LIBC_CREATE: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/hazyparker/project/learn_ros/Basics/ros_ws/src +//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=5 +//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 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//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=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding PythonInterp +FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python2][v2.7.17()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +GMOCK_FROM_SOURCE_FOUND:INTERNAL=TRUE +GMOCK_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include +GMOCK_FROM_SOURCE_LIBRARIES:INTERNAL=gmock +GMOCK_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gmock +GMOCK_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gmock_main +GTEST_FROM_SOURCE_FOUND:INTERNAL=TRUE +GTEST_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include +GTEST_FROM_SOURCE_LIBRARIES:INTERNAL=gtest +GTEST_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest +GTEST_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gtest_main +//ADVANCED property for variable: GTEST_INCLUDE_DIR +GTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY +GTEST_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY_DEBUG +GTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY +GTEST_MAIN_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY_DEBUG +GTEST_MAIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PYTHON_EXECUTABLE +PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1 +//This needs to be in PYTHONPATH when 'setup.py install' is called. +// And it needs to match. But setuptools won't tell us where +// it will install things. +PYTHON_INSTALL_DIR:INTERNAL=lib/python2.7/dist-packages + diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9e0e71d8c6b896ec560f07199f9cc974e84817a5 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "7.5.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_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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 "x86_64-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 "x86_64-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_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..85984d753b2f39384841d4e81fd0f2225061bc74 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.5.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") +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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "x86_64-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 "x86_64-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_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..b1860a3dd40b90b19fab68ce7a4bf1a8fee6135d Binary files /dev/null and b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..19a9ccae8956d20ea78fcbaa929a195ae4089300 Binary files /dev/null and b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..41b42ad82e685fff28d761366580348c3c4dea5e --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.4.0-91-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-91-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.4.0-91-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.4.0-91-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..722faa803f6df8628261ccd5da97b74fa64c0114 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(__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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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 diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..11b7df452ad29dfd7bf1d9b188856c9e33182403 Binary files /dev/null and b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out differ diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..2d66298588989dc5d404dae0025b8bf4e952498e --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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; +} diff --git a/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..71c2ceda86a2fae89d661d131b89af3990e37838 Binary files /dev/null and b/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out differ diff --git a/Basics/ros_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/ros_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..54a8882db35777a8107cdac1c0093edd0bddb5bc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hazyparker/project/learn_ros/Basics/ros_ws/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/ros_ws/build") + +# 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}) diff --git a/Basics/ros_ws/build/CMakeFiles/CMakeError.log b/Basics/ros_ws/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000000000000000000000000000000000000..1bff8cf507fb16489d0b9ee259194902b45c9018 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/CMakeError.log @@ -0,0 +1,55 @@ +Determining if the pthread_create exist failed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_58dd7/fast" +/usr/bin/make -f CMakeFiles/cmTC_58dd7.dir/build.make CMakeFiles/cmTC_58dd7.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_58dd7.dir/CheckSymbolExists.c.o +/usr/bin/cc -o CMakeFiles/cmTC_58dd7.dir/CheckSymbolExists.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c +Linking C executable cmTC_58dd7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58dd7.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_58dd7.dir/CheckSymbolExists.c.o -o cmTC_58dd7 +CMakeFiles/cmTC_58dd7.dir/CheckSymbolExists.c.o:在函数‘main’中: +CheckSymbolExists.c:(.text+0x1b):对‘pthread_create’未定义的引用 +collect2: error: ld returned 1 exit status +CMakeFiles/cmTC_58dd7.dir/build.make:97: recipe for target 'cmTC_58dd7' failed +make[1]: *** [cmTC_58dd7] Error 1 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Makefile:126: recipe for target 'cmTC_58dd7/fast' failed +make: *** [cmTC_58dd7/fast] Error 2 + +File /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef pthread_create + return ((int*)(&pthread_create))[argc]; +#else + (void)argc; + return 0; +#endif +} + +Determining if the function pthread_create exists in the pthreads failed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_75dbd/fast" +/usr/bin/make -f CMakeFiles/cmTC_75dbd.dir/build.make CMakeFiles/cmTC_75dbd.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_75dbd.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_75dbd.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c +Linking C executable cmTC_75dbd +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75dbd.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_75dbd.dir/CheckFunctionExists.c.o -o cmTC_75dbd -lpthreads +/usr/bin/ld: 找不到 -lpthreads +collect2: error: ld returned 1 exit status +CMakeFiles/cmTC_75dbd.dir/build.make:97: recipe for target 'cmTC_75dbd' failed +make[1]: *** [cmTC_75dbd] Error 1 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Makefile:126: recipe for target 'cmTC_75dbd/fast' failed +make: *** [cmTC_75dbd/fast] Error 2 + + diff --git a/Basics/ros_ws/build/CMakeFiles/CMakeOutput.log b/Basics/ros_ws/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..016b7486cd9603015cf8a59077dd056fa1c3b6f7 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,661 @@ +The system is: Linux - 5.4.0-91-generic - x86_64 +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/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/3.10.2/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/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_3992e/fast" +/usr/bin/make -f CMakeFiles/cmTC_3992e.dir/build.make CMakeFiles/cmTC_3992e.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_3992e.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_3992e.dir/testCCompiler.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_3992e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3992e.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_3992e.dir/testCCompiler.c.o -o cmTC_3992e +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_bf372/fast" +/usr/bin/make -f CMakeFiles/cmTC_bf372.dir/build.make CMakeFiles/cmTC_bf372.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_bf372 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf372.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o -o cmTC_bf372 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bf372' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccheYHGf.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bf372 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bf372.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/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bf372' '-mtune=generic' '-march=x86-64' +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_bf372/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_bf372.dir/build.make CMakeFiles/cmTC_bf372.dir/build] + ignore line: [make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp”] + ignore line: [Building C object CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_bf372] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf372.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_bf372.dir/CMakeCCompilerABI.c.o -o cmTC_bf372 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bf372' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccheYHGf.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bf372 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bf372.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/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccheYHGf.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_bf372] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_bf372.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/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_7b296/fast" +/usr/bin/make -f CMakeFiles/cmTC_7b296.dir/build.make CMakeFiles/cmTC_7b296.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_7b296.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_7b296.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_7b296 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7b296.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_7b296.dir/feature_tests.c.o -o cmTC_7b296 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_ff111/fast" +/usr/bin/make -f CMakeFiles/cmTC_ff111.dir/build.make CMakeFiles/cmTC_ff111.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_ff111.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_ff111.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_ff111 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ff111.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_ff111.dir/feature_tests.c.o -o cmTC_ff111 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_7e945/fast" +/usr/bin/make -f CMakeFiles/cmTC_7e945.dir/build.make CMakeFiles/cmTC_7e945.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_7e945.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_7e945.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_7e945 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e945.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_7e945.dir/feature_tests.c.o -o cmTC_7e945 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_fdaf4/fast" +/usr/bin/make -f CMakeFiles/cmTC_fdaf4.dir/build.make CMakeFiles/cmTC_fdaf4.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_fdaf4.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_fdaf4.dir/testCXXCompiler.cxx.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_fdaf4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fdaf4.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_fdaf4.dir/testCXXCompiler.cxx.o -o cmTC_fdaf4 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_6ddcc/fast" +/usr/bin/make -f CMakeFiles/cmTC_6ddcc.dir/build.make CMakeFiles/cmTC_6ddcc.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_6ddcc +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6ddcc.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6ddcc +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_6ddcc' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYh99HA.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6ddcc /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_6ddcc' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_6ddcc/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_6ddcc.dir/build.make CMakeFiles/cmTC_6ddcc.dir/build] + ignore line: [make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp”] + ignore line: [Building CXX object CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_6ddcc] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6ddcc.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6ddcc ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_6ddcc' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYh99HA.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6ddcc /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_6ddcc.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccYh99HA.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_6ddcc] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_6ddcc.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/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_0d900/fast" +/usr/bin/make -f CMakeFiles/cmTC_0d900.dir/build.make CMakeFiles/cmTC_0d900.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_0d900.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_0d900.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_0d900 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d900.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_0d900.dir/feature_tests.cxx.o -o cmTC_0d900 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_cf90e/fast" +/usr/bin/make -f CMakeFiles/cmTC_cf90e.dir/build.make CMakeFiles/cmTC_cf90e.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_cf90e.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_cf90e.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_cf90e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf90e.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_cf90e.dir/feature_tests.cxx.o -o cmTC_cf90e +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_7a828/fast" +/usr/bin/make -f CMakeFiles/cmTC_7a828.dir/build.make CMakeFiles/cmTC_7a828.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_7a828.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_7a828.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_7a828 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7a828.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_7a828.dir/feature_tests.cxx.o -o cmTC_7a828 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_510cd/fast" +/usr/bin/make -f CMakeFiles/cmTC_510cd.dir/build.make CMakeFiles/cmTC_510cd.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_510cd.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_510cd.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_510cd +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_510cd.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_510cd.dir/feature_tests.cxx.o -o cmTC_510cd +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_b39cb/fast" +/usr/bin/make -f CMakeFiles/cmTC_b39cb.dir/build.make CMakeFiles/cmTC_b39cb.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_b39cb.dir/CheckIncludeFile.c.o +/usr/bin/cc -o CMakeFiles/cmTC_b39cb.dir/CheckIncludeFile.c.o -c /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_b39cb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b39cb.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_b39cb.dir/CheckIncludeFile.c.o -o cmTC_b39cb +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + +Determining if the function pthread_create exists in the pthread passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_fc68d/fast" +/usr/bin/make -f CMakeFiles/cmTC_fc68d.dir/build.make CMakeFiles/cmTC_fc68d.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_fc68d.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_fc68d.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c +Linking C executable cmTC_fc68d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fc68d.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_fc68d.dir/CheckFunctionExists.c.o -o cmTC_fc68d -lpthread +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/CMakeTmp” + + diff --git a/Basics/ros_ws/build/CMakeFiles/CMakeRuleHashes.txt b/Basics/ros_ws/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..fec70267413b564e58c267c7e02b3e72fcd991c1 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,2 @@ +# Hashes of file build rules. +f2176d04ca06e176ca45ad077ed40d77 CMakeFiles/clean_test_results diff --git a/Basics/ros_ws/build/CMakeFiles/Makefile.cmake b/Basics/ros_ws/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ca53cfbddd27fbcf26c7cf8909f2ba776998bd8b --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,230 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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" + "CMakeFiles/3.10.2/CMakeCCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.10.2/CMakeSystem.cmake" + "catkin/catkin_generated/version/package.cmake" + "catkin_generated/installspace/_setup_util.py" + "catkin_generated/order_packages.cmake" + "learning_topic/catkin_generated/ordered_paths.cmake" + "learning_topic/catkin_generated/package.cmake" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/src/CMakeLists.txt" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic/CMakeLists.txt" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic/package.xml" + "/opt/ros/melodic/share/catkin/cmake/../package.xml" + "/opt/ros/melodic/share/catkin/cmake/all.cmake" + "/opt/ros/melodic/share/catkin/cmake/assert.cmake" + "/opt/ros/melodic/share/catkin/cmake/atomic_configure_file.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkinConfig-version.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_add_env_hooks.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_destinations.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_download.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_generate_environment.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_install_python.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_libraries.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_metapackage.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_package.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_package_xml.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_python_setup.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_symlink_install.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_workspace.cmake" + "/opt/ros/melodic/share/catkin/cmake/custom_install.cmake" + "/opt/ros/melodic/share/catkin/cmake/debug_message.cmake" + "/opt/ros/melodic/share/catkin/cmake/em/order_packages.cmake.em" + "/opt/ros/melodic/share/catkin/cmake/em/pkg.pc.em" + "/opt/ros/melodic/share/catkin/cmake/em_expand.cmake" + "/opt/ros/melodic/share/catkin/cmake/empy.cmake" + "/opt/ros/melodic/share/catkin/cmake/find_program_required.cmake" + "/opt/ros/melodic/share/catkin/cmake/interrogate_setup_dot_py.py" + "/opt/ros/melodic/share/catkin/cmake/legacy.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_append_deduplicate.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_append_unique.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_insert_in_workspace_order.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/lsb.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/ubuntu.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/windows.cmake" + "/opt/ros/melodic/share/catkin/cmake/python.cmake" + "/opt/ros/melodic/share/catkin/cmake/safe_execute_process.cmake" + "/opt/ros/melodic/share/catkin/cmake/stamp.cmake" + "/opt/ros/melodic/share/catkin/cmake/string_starts_with.cmake" + "/opt/ros/melodic/share/catkin/cmake/templates/_setup_util.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/env.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/generate_cached_setup.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.bash.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.zsh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/order_packages.context.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkg.context.pc.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkgConfig-version.cmake.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkgConfig.cmake.in" + "/opt/ros/melodic/share/catkin/cmake/templates/rosinstall.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.bash.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.zsh.in" + "/opt/ros/melodic/share/catkin/cmake/test/catkin_download_test_data.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/gtest.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/nosetests.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/tests.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/doxygen.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/libraries.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/rt.cmake" + "/opt/ros/melodic/share/cpp_common/cmake/cpp_commonConfig-version.cmake" + "/opt/ros/melodic/share/cpp_common/cmake/cpp_commonConfig.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgsConfig-version.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgsConfig.cmake" + "/opt/ros/melodic/share/message_runtime/cmake/message_runtimeConfig-version.cmake" + "/opt/ros/melodic/share/message_runtime/cmake/message_runtimeConfig.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsole-extras.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsoleConfig-version.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsoleConfig.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscpp-msg-extras.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscppConfig-version.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscppConfig.cmake" + "/opt/ros/melodic/share/roscpp_serialization/cmake/roscpp_serializationConfig-version.cmake" + "/opt/ros/melodic/share/roscpp_serialization/cmake/roscpp_serializationConfig.cmake" + "/opt/ros/melodic/share/roscpp_traits/cmake/roscpp_traitsConfig-version.cmake" + "/opt/ros/melodic/share/roscpp_traits/cmake/roscpp_traitsConfig.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgsConfig-version.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgsConfig.cmake" + "/opt/ros/melodic/share/rospy/cmake/rospyConfig-version.cmake" + "/opt/ros/melodic/share/rospy/cmake/rospyConfig.cmake" + "/opt/ros/melodic/share/rostime/cmake/rostimeConfig-version.cmake" + "/opt/ros/melodic/share/rostime/cmake/rostimeConfig.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgsConfig-version.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgsConfig.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvs-msg-extras.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvsConfig-version.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvsConfig.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesim-msg-extras.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesimConfig-version.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesimConfig.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcpp-extras.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcppConfig-version.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcppConfig.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.10/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.10/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.10/Modules/CheckSymbolExists.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.10/Modules/DartConfiguration.tcl.in" + "/usr/share/cmake-3.10/Modules/FindGTest.cmake" + "/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.10/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.10/Modules/FindPythonInterp.cmake" + "/usr/share/cmake-3.10/Modules/FindThreads.cmake" + "/usr/share/cmake-3.10/Modules/GoogleTest.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.10/Modules/Platform/UnixPaths.cmake" + "/usr/src/googletest/CMakeLists.txt" + "/usr/src/googletest/googlemock/CMakeLists.txt" + "/usr/src/googletest/googletest/CMakeLists.txt" + "/usr/src/googletest/googletest/cmake/internal_utils.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CTestConfiguration.ini" + "catkin_generated/stamps/Project/package.xml.stamp" + "atomic_configure/_setup_util.py" + "atomic_configure/env.sh" + "atomic_configure/setup.bash" + "atomic_configure/local_setup.bash" + "atomic_configure/setup.sh" + "atomic_configure/local_setup.sh" + "atomic_configure/setup.zsh" + "atomic_configure/local_setup.zsh" + "atomic_configure/.rosinstall" + "catkin_generated/installspace/_setup_util.py" + "catkin_generated/stamps/Project/_setup_util.py.stamp" + "catkin_generated/installspace/env.sh" + "catkin_generated/installspace/setup.bash" + "catkin_generated/installspace/local_setup.bash" + "catkin_generated/installspace/setup.sh" + "catkin_generated/installspace/local_setup.sh" + "catkin_generated/installspace/setup.zsh" + "catkin_generated/installspace/local_setup.zsh" + "catkin_generated/installspace/.rosinstall" + "catkin_generated/generate_cached_setup.py" + "catkin_generated/env_cached.sh" + "catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp" + "catkin_generated/order_packages.py" + "catkin_generated/stamps/Project/order_packages.cmake.em.stamp" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + "learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/tests.dir/DependInfo.cmake" + "CMakeFiles/download_extra_data.dir/DependInfo.cmake" + "CMakeFiles/run_tests.dir/DependInfo.cmake" + "CMakeFiles/clean_test_results.dir/DependInfo.cmake" + "CMakeFiles/doxygen.dir/DependInfo.cmake" + "gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake" + "gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake" + "gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake" + ) diff --git a/Basics/ros_ws/build/CMakeFiles/Makefile2 b/Basics/ros_ws/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..be374b6891ee2596e76b1685950a3c950ca6c044 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/Makefile2 @@ -0,0 +1,1423 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# Target rules for target CMakeFiles/tests.dir + +# All Build rule for target. +CMakeFiles/tests.dir/all: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/depend + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target tests" +.PHONY : CMakeFiles/tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/tests.dir/rule + +# Convenience name for target. +tests: CMakeFiles/tests.dir/rule + +.PHONY : tests + +# clean rule for target. +CMakeFiles/tests.dir/clean: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/clean +.PHONY : CMakeFiles/tests.dir/clean + +# clean rule for target. +clean: CMakeFiles/tests.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/download_extra_data.dir + +# All Build rule for target. +CMakeFiles/download_extra_data.dir/all: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/depend + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target download_extra_data" +.PHONY : CMakeFiles/download_extra_data.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/download_extra_data.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/download_extra_data.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/download_extra_data.dir/rule + +# Convenience name for target. +download_extra_data: CMakeFiles/download_extra_data.dir/rule + +.PHONY : download_extra_data + +# clean rule for target. +CMakeFiles/download_extra_data.dir/clean: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/clean +.PHONY : CMakeFiles/download_extra_data.dir/clean + +# clean rule for target. +clean: CMakeFiles/download_extra_data.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/run_tests.dir + +# All Build rule for target. +CMakeFiles/run_tests.dir/all: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/depend + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target run_tests" +.PHONY : CMakeFiles/run_tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/run_tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/run_tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/run_tests.dir/rule + +# Convenience name for target. +run_tests: CMakeFiles/run_tests.dir/rule + +.PHONY : run_tests + +# clean rule for target. +CMakeFiles/run_tests.dir/clean: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/clean +.PHONY : CMakeFiles/run_tests.dir/clean + +# clean rule for target. +clean: CMakeFiles/run_tests.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/clean_test_results.dir + +# All Build rule for target. +CMakeFiles/clean_test_results.dir/all: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/depend + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target clean_test_results" +.PHONY : CMakeFiles/clean_test_results.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/clean_test_results.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/clean_test_results.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/clean_test_results.dir/rule + +# Convenience name for target. +clean_test_results: CMakeFiles/clean_test_results.dir/rule + +.PHONY : clean_test_results + +# clean rule for target. +CMakeFiles/clean_test_results.dir/clean: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/clean +.PHONY : CMakeFiles/clean_test_results.dir/clean + +# clean rule for target. +clean: CMakeFiles/clean_test_results.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/doxygen.dir + +# All Build rule for target. +CMakeFiles/doxygen.dir/all: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/depend + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target doxygen" +.PHONY : CMakeFiles/doxygen.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/doxygen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/doxygen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/doxygen.dir/rule + +# Convenience name for target. +doxygen: CMakeFiles/doxygen.dir/rule + +.PHONY : doxygen + +# clean rule for target. +CMakeFiles/doxygen.dir/clean: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/clean +.PHONY : CMakeFiles/doxygen.dir/clean + +# clean rule for target. +clean: CMakeFiles/doxygen.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory gtest + +# Convenience name for "all" pass in the directory. +gtest/all: gtest/googlemock/all + +.PHONY : gtest/all + +# Convenience name for "clean" pass in the directory. +gtest/clean: gtest/googlemock/clean + +.PHONY : gtest/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/preinstall: gtest/googlemock/preinstall + +.PHONY : gtest/preinstall + +#============================================================================= +# Directory level rules for directory gtest/googlemock + +# Convenience name for "all" pass in the directory. +gtest/googlemock/all: gtest/googlemock/gtest/all + +.PHONY : gtest/googlemock/all + +# Convenience name for "clean" pass in the directory. +gtest/googlemock/clean: gtest/googlemock/CMakeFiles/gmock_main.dir/clean +gtest/googlemock/clean: gtest/googlemock/CMakeFiles/gmock.dir/clean +gtest/googlemock/clean: gtest/googlemock/gtest/clean + +.PHONY : gtest/googlemock/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/googlemock/preinstall: gtest/googlemock/gtest/preinstall + +.PHONY : gtest/googlemock/preinstall + +#============================================================================= +# Target rules for target gtest/googlemock/CMakeFiles/gmock_main.dir + +# All Build rule for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/all: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/depend + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=4,5,6,7 "Built target gmock_main" +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +.PHONY : gmock_main + +# clean rule for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/clean +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +# clean rule for target. +clean: gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target gtest/googlemock/CMakeFiles/gmock.dir + +# All Build rule for target. +gtest/googlemock/CMakeFiles/gmock.dir/all: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/depend + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=1,2,3 "Built target gmock" +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/CMakeFiles/gmock.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 3 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: gtest/googlemock/CMakeFiles/gmock.dir/rule + +.PHONY : gmock + +# clean rule for target. +gtest/googlemock/CMakeFiles/gmock.dir/clean: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/clean +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/clean + +# clean rule for target. +clean: gtest/googlemock/CMakeFiles/gmock.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory gtest/googlemock/gtest + +# Convenience name for "all" pass in the directory. +gtest/googlemock/gtest/all: + +.PHONY : gtest/googlemock/gtest/all + +# Convenience name for "clean" pass in the directory. +gtest/googlemock/gtest/clean: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +gtest/googlemock/gtest/clean: gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +.PHONY : gtest/googlemock/gtest/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/googlemock/gtest/preinstall: + +.PHONY : gtest/googlemock/gtest/preinstall + +#============================================================================= +# Target rules for target gtest/googlemock/gtest/CMakeFiles/gtest_main.dir + +# All Build rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all: gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=10,11 "Built target gtest_main" +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +.PHONY : gtest_main + +# clean rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +# clean rule for target. +clean: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target gtest/googlemock/gtest/CMakeFiles/gtest.dir + +# All Build rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/all: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=8,9 "Built target gtest" +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +.PHONY : gtest + +# clean rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +# clean rule for target. +clean: gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory learning_topic + +# Convenience name for "all" pass in the directory. +learning_topic/all: + +.PHONY : learning_topic/all + +# Convenience name for "clean" pass in the directory. +learning_topic/clean: learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +.PHONY : learning_topic/clean + +# Convenience name for "preinstall" pass in the directory. +learning_topic/preinstall: + +.PHONY : learning_topic/preinstall + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/roscpp_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule + +# Convenience name for target. +roscpp_generate_messages_py: learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule + +.PHONY : roscpp_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_py: learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +.PHONY : std_msgs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +.PHONY : std_srvs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +.PHONY : geometry_msgs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +# Convenience name for target. +roscpp_generate_messages_nodejs: learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +.PHONY : roscpp_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +# Convenience name for target. +roscpp_generate_messages_eus: learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +.PHONY : roscpp_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +.PHONY : std_msgs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_cpp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_lisp: learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +.PHONY : std_msgs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_eus: learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +.PHONY : std_msgs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_py: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_lisp: learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +.PHONY : roscpp_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +.PHONY : geometry_msgs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +.PHONY : geometry_msgs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +.PHONY : geometry_msgs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +.PHONY : geometry_msgs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +.PHONY : turtlesim_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_cpp: learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +.PHONY : std_msgs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_eus: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +.PHONY : std_srvs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_lisp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +.PHONY : turtlesim_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +.PHONY : std_srvs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +.PHONY : turtlesim_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +.PHONY : turtlesim_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +.PHONY : turtlesim_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_cpp: learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +.PHONY : roscpp_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +.PHONY : std_srvs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +.PHONY : std_srvs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +.PHONY : 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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/CMakeFiles/TargetDirectories.txt b/Basics/ros_ws/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..811818fa277d4d8c044467cdafe9f07a2e2f4320 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,74 @@ +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/tests.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/run_tests.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/doxygen.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/install/local.dir diff --git a/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/build.make b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..cf2a9c9078730d22f4932ce0ee000ae0fc4a7f6d --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for clean_test_results. + +# Include the progress variables for this target. +include CMakeFiles/clean_test_results.dir/progress.make + +CMakeFiles/clean_test_results: + /usr/bin/python2 /opt/ros/melodic/share/catkin/cmake/test/remove_test_results.py /home/hazyparker/project/learn_ros/Basics/ros_ws/build/test_results + +clean_test_results: CMakeFiles/clean_test_results +clean_test_results: CMakeFiles/clean_test_results.dir/build.make + +.PHONY : clean_test_results + +# Rule to build all files generated by this target. +CMakeFiles/clean_test_results.dir/build: clean_test_results + +.PHONY : CMakeFiles/clean_test_results.dir/build + +CMakeFiles/clean_test_results.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/clean_test_results.dir/cmake_clean.cmake +.PHONY : CMakeFiles/clean_test_results.dir/clean + +CMakeFiles/clean_test_results.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/clean_test_results.dir/depend + diff --git a/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..63bf0e0f4cda9ec3f7123aee2e30d09703661043 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/clean_test_results" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/clean_test_results.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/progress.make b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/clean_test_results.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/CMakeFiles/clion-log.txt b/Basics/ros_ws/build/CMakeFiles/clion-log.txt new file mode 100644 index 0000000000000000000000000000000000000000..338639ad93bef7b747960e2ec37b9e8937044df1 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/clion-log.txt @@ -0,0 +1,4 @@ +Cannot generate into /home/hazyparker/project/learn_ros/Basics/ros_ws/build +It is already used for project /home/hazyparker/project/learn_ros/Basics/ros_ws/src + +Please either delete it manually or select another generation directory diff --git a/Basics/ros_ws/build/CMakeFiles/cmake.check_cache b/Basics/ros_ws/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/build.make b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d46a1527447ebf9f5e0a7a1145c6f25c5fbe92d9 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for download_extra_data. + +# Include the progress variables for this target. +include CMakeFiles/download_extra_data.dir/progress.make + +download_extra_data: CMakeFiles/download_extra_data.dir/build.make + +.PHONY : download_extra_data + +# Rule to build all files generated by this target. +CMakeFiles/download_extra_data.dir/build: download_extra_data + +.PHONY : CMakeFiles/download_extra_data.dir/build + +CMakeFiles/download_extra_data.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/download_extra_data.dir/cmake_clean.cmake +.PHONY : CMakeFiles/download_extra_data.dir/clean + +CMakeFiles/download_extra_data.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/download_extra_data.dir/depend + diff --git a/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf7d7e25c0800701682eb7dcc091389edb9f8952 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/download_extra_data.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/progress.make b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/download_extra_data.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/CMakeFiles/doxygen.dir/build.make b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2eade666b29dcf45ae1cde5959ff7454570732ce --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for doxygen. + +# Include the progress variables for this target. +include CMakeFiles/doxygen.dir/progress.make + +doxygen: CMakeFiles/doxygen.dir/build.make + +.PHONY : doxygen + +# Rule to build all files generated by this target. +CMakeFiles/doxygen.dir/build: doxygen + +.PHONY : CMakeFiles/doxygen.dir/build + +CMakeFiles/doxygen.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/doxygen.dir/cmake_clean.cmake +.PHONY : CMakeFiles/doxygen.dir/clean + +CMakeFiles/doxygen.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/doxygen.dir/depend + diff --git a/Basics/ros_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ef20a758f2dfce53bd9a1326dac1182bbe19a225 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/doxygen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/CMakeFiles/doxygen.dir/progress.make b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/doxygen.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/CMakeFiles/feature_tests.bin b/Basics/ros_ws/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000000000000000000000000000000000000..ae0f49908c89c0ae48d68d46e0157414893eb334 Binary files /dev/null and b/Basics/ros_ws/build/CMakeFiles/feature_tests.bin differ diff --git a/Basics/ros_ws/build/CMakeFiles/feature_tests.c b/Basics/ros_ws/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000000000000000000000000000000000000..83e86dd8cd85f9f7554f51122b8cd08412ec01f2 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx b/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000000000000000000000000000000000000..b93418c6ed69feaf1b5c2feb9592bbdb5a5f042c --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/Basics/ros_ws/build/CMakeFiles/progress.marks b/Basics/ros_ws/build/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/ros_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/CMakeFiles/run_tests.dir/build.make b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..de88fa748c4248e17174f3c28dcb76f015d59111 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for run_tests. + +# Include the progress variables for this target. +include CMakeFiles/run_tests.dir/progress.make + +run_tests: CMakeFiles/run_tests.dir/build.make + +.PHONY : run_tests + +# Rule to build all files generated by this target. +CMakeFiles/run_tests.dir/build: run_tests + +.PHONY : CMakeFiles/run_tests.dir/build + +CMakeFiles/run_tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/run_tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/run_tests.dir/clean + +CMakeFiles/run_tests.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/run_tests.dir/depend + diff --git a/Basics/ros_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e67d34f6d11ce305bbc51c998454c8d9cc3b7470 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/run_tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/CMakeFiles/run_tests.dir/progress.make b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/run_tests.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/CMakeFiles/tests.dir/DependInfo.cmake b/Basics/ros_ws/build/CMakeFiles/tests.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/tests.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/CMakeFiles/tests.dir/build.make b/Basics/ros_ws/build/CMakeFiles/tests.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b8e413092300c87254054e743c135715db650fae --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/tests.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for tests. + +# Include the progress variables for this target. +include CMakeFiles/tests.dir/progress.make + +tests: CMakeFiles/tests.dir/build.make + +.PHONY : tests + +# Rule to build all files generated by this target. +CMakeFiles/tests.dir/build: tests + +.PHONY : CMakeFiles/tests.dir/build + +CMakeFiles/tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/tests.dir/clean + +CMakeFiles/tests.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/tests.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/tests.dir/depend + diff --git a/Basics/ros_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake b/Basics/ros_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..910f04d829639aafb592cbe6806fdcd7276630ee --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/CMakeFiles/tests.dir/progress.make b/Basics/ros_ws/build/CMakeFiles/tests.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/CMakeFiles/tests.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/CTestConfiguration.ini b/Basics/ros_ws/build/CTestConfiguration.ini new file mode 100644 index 0000000000000000000000000000000000000000..fbf9557c82af2765bc3f31be76d4bb78f20c9bc1 --- /dev/null +++ b/Basics/ros_ws/build/CTestConfiguration.ini @@ -0,0 +1,115 @@ +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src +BuildDirectory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Where to place the cost data store +CostDataFile: + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: hazy-LenovoAir14 + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: + +# Subprojects +LabelsForSubprojects: + +# Submission information +IsCDash: +CDashVersion: +QueryCDashVersion: +DropSite: +DropLocation: +DropSiteUser: +DropSitePassword: +DropSiteMode: +DropMethod: +TriggerSite: +ScpCommand: + +# Dashboard start time +NightlyStartTime: + +# Commands for the build/test/submit cycle +ConfigureCommand: "/usr/bin/cmake" "/home/hazyparker/project/learn_ros/Basics/ros_ws/src" +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: 7.5.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: diff --git a/Basics/ros_ws/build/CTestCustom.cmake b/Basics/ros_ws/build/CTestCustom.cmake new file mode 100644 index 0000000000000000000000000000000000000000..14956f319e3982ef0886cb4e45e5b67437a99b2a --- /dev/null +++ b/Basics/ros_ws/build/CTestCustom.cmake @@ -0,0 +1,2 @@ +set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0) +set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0) diff --git a/Basics/ros_ws/build/CTestTestfile.cmake b/Basics/ros_ws/build/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b20bafcb3460498abe0c618f45a1420688638a04 --- /dev/null +++ b/Basics/ros_ws/build/CTestTestfile.cmake @@ -0,0 +1,8 @@ +# CMake generated Testfile for +# Source directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/src +# Build directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") +subdirs("learning_topic") diff --git a/Basics/ros_ws/build/Makefile b/Basics/ros_ws/build/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f62b2ec6810be9b7cd28f78177ec6d0b4ba4eb98 --- /dev/null +++ b/Basics/ros_ws/build/Makefile @@ -0,0 +1,742 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# 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 +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 -H$(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 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 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/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named tests + +# Build rule for target. +tests: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 tests +.PHONY : tests + +# fast build rule for target. +tests/fast: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build +.PHONY : tests/fast + +#============================================================================= +# Target rules for targets named download_extra_data + +# Build rule for target. +download_extra_data: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 download_extra_data +.PHONY : download_extra_data + +# fast build rule for target. +download_extra_data/fast: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/build +.PHONY : download_extra_data/fast + +#============================================================================= +# Target rules for targets named run_tests + +# Build rule for target. +run_tests: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 run_tests +.PHONY : run_tests + +# fast build rule for target. +run_tests/fast: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/build +.PHONY : run_tests/fast + +#============================================================================= +# Target rules for targets named clean_test_results + +# Build rule for target. +clean_test_results: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 clean_test_results +.PHONY : clean_test_results + +# fast build rule for target. +clean_test_results/fast: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/build +.PHONY : clean_test_results/fast + +#============================================================================= +# Target rules for targets named doxygen + +# Build rule for target. +doxygen: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 doxygen +.PHONY : doxygen + +# fast build rule for target. +doxygen/fast: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/build +.PHONY : doxygen/fast + +#============================================================================= +# Target rules for targets named gmock_main + +# Build rule for target. +gmock_main: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gmock_main +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +#============================================================================= +# Target rules for targets named gmock + +# Build rule for target. +gmock: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gmock +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +#============================================================================= +# Target rules for targets named gtest_main + +# Build rule for target. +gtest_main: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gtest_main +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +#============================================================================= +# Target rules for targets named gtest + +# Build rule for target. +gtest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gtest +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_py + +# Build rule for target. +roscpp_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_py +.PHONY : roscpp_generate_messages_py + +# fast build rule for target. +roscpp_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build +.PHONY : roscpp_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_py + +# Build rule for target. +std_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_py +.PHONY : std_msgs_generate_messages_py + +# fast build rule for target. +std_msgs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build +.PHONY : std_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_lisp + +# Build rule for target. +std_srvs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_lisp +.PHONY : std_srvs_generate_messages_lisp + +# fast build rule for target. +std_srvs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build +.PHONY : std_srvs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_eus + +# Build rule for target. +geometry_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_eus +.PHONY : geometry_msgs_generate_messages_eus + +# fast build rule for target. +geometry_msgs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build +.PHONY : geometry_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_nodejs + +# Build rule for target. +roscpp_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_nodejs +.PHONY : roscpp_generate_messages_nodejs + +# fast build rule for target. +roscpp_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build +.PHONY : roscpp_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_eus + +# Build rule for target. +roscpp_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_eus +.PHONY : roscpp_generate_messages_eus + +# fast build rule for target. +roscpp_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build +.PHONY : roscpp_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_nodejs + +# Build rule for target. +std_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_nodejs +.PHONY : std_msgs_generate_messages_nodejs + +# fast build rule for target. +std_msgs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build +.PHONY : std_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_cpp + +# Build rule for target. +rosgraph_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_cpp +.PHONY : rosgraph_msgs_generate_messages_cpp + +# fast build rule for target. +rosgraph_msgs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build +.PHONY : rosgraph_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_lisp + +# Build rule for target. +std_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_lisp +.PHONY : std_msgs_generate_messages_lisp + +# fast build rule for target. +std_msgs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build +.PHONY : std_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_eus + +# Build rule for target. +std_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_eus +.PHONY : std_msgs_generate_messages_eus + +# fast build rule for target. +std_msgs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build +.PHONY : std_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_py + +# Build rule for target. +rosgraph_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_py +.PHONY : rosgraph_msgs_generate_messages_py + +# fast build rule for target. +rosgraph_msgs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build +.PHONY : rosgraph_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_lisp + +# Build rule for target. +roscpp_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_lisp +.PHONY : roscpp_generate_messages_lisp + +# fast build rule for target. +roscpp_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build +.PHONY : roscpp_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_nodejs + +# Build rule for target. +geometry_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_nodejs +.PHONY : geometry_msgs_generate_messages_nodejs + +# fast build rule for target. +geometry_msgs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build +.PHONY : geometry_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_cpp + +# Build rule for target. +geometry_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_cpp +.PHONY : geometry_msgs_generate_messages_cpp + +# fast build rule for target. +geometry_msgs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build +.PHONY : geometry_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_lisp + +# Build rule for target. +geometry_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_lisp +.PHONY : geometry_msgs_generate_messages_lisp + +# fast build rule for target. +geometry_msgs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build +.PHONY : geometry_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_py + +# Build rule for target. +geometry_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_py +.PHONY : geometry_msgs_generate_messages_py + +# fast build rule for target. +geometry_msgs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build +.PHONY : geometry_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_cpp + +# Build rule for target. +turtlesim_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_cpp +.PHONY : turtlesim_generate_messages_cpp + +# fast build rule for target. +turtlesim_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build +.PHONY : turtlesim_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_cpp + +# Build rule for target. +std_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_cpp +.PHONY : std_msgs_generate_messages_cpp + +# fast build rule for target. +std_msgs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build +.PHONY : std_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_eus + +# Build rule for target. +rosgraph_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_eus +.PHONY : rosgraph_msgs_generate_messages_eus + +# fast build rule for target. +rosgraph_msgs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build +.PHONY : rosgraph_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_cpp + +# Build rule for target. +std_srvs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_cpp +.PHONY : std_srvs_generate_messages_cpp + +# fast build rule for target. +std_srvs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build +.PHONY : std_srvs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_lisp + +# Build rule for target. +rosgraph_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_lisp +.PHONY : rosgraph_msgs_generate_messages_lisp + +# fast build rule for target. +rosgraph_msgs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build +.PHONY : rosgraph_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_eus + +# Build rule for target. +turtlesim_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_eus +.PHONY : turtlesim_generate_messages_eus + +# fast build rule for target. +turtlesim_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build +.PHONY : turtlesim_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_nodejs + +# Build rule for target. +std_srvs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_nodejs +.PHONY : std_srvs_generate_messages_nodejs + +# fast build rule for target. +std_srvs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build +.PHONY : std_srvs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_nodejs + +# Build rule for target. +rosgraph_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_nodejs +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# fast build rule for target. +rosgraph_msgs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build +.PHONY : rosgraph_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_lisp + +# Build rule for target. +turtlesim_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_lisp +.PHONY : turtlesim_generate_messages_lisp + +# fast build rule for target. +turtlesim_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build +.PHONY : turtlesim_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_nodejs + +# Build rule for target. +turtlesim_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_nodejs +.PHONY : turtlesim_generate_messages_nodejs + +# fast build rule for target. +turtlesim_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build +.PHONY : turtlesim_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_py + +# Build rule for target. +turtlesim_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_py +.PHONY : turtlesim_generate_messages_py + +# fast build rule for target. +turtlesim_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build +.PHONY : turtlesim_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_cpp + +# Build rule for target. +roscpp_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_cpp +.PHONY : roscpp_generate_messages_cpp + +# fast build rule for target. +roscpp_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build +.PHONY : roscpp_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_py + +# Build rule for target. +std_srvs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_py +.PHONY : std_srvs_generate_messages_py + +# fast build rule for target. +std_srvs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build +.PHONY : std_srvs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_eus + +# Build rule for target. +std_srvs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_eus +.PHONY : std_srvs_generate_messages_eus + +# fast build rule for target. +std_srvs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build +.PHONY : std_srvs_generate_messages_eus/fast + +# 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" + @echo "... list_install_components" + @echo "... tests" + @echo "... rebuild_cache" + @echo "... download_extra_data" + @echo "... edit_cache" + @echo "... run_tests" + @echo "... clean_test_results" + @echo "... doxygen" + @echo "... install/local" + @echo "... test" + @echo "... gmock_main" + @echo "... gmock" + @echo "... gtest_main" + @echo "... gtest" + @echo "... roscpp_generate_messages_py" + @echo "... std_msgs_generate_messages_py" + @echo "... std_srvs_generate_messages_lisp" + @echo "... geometry_msgs_generate_messages_eus" + @echo "... roscpp_generate_messages_nodejs" + @echo "... roscpp_generate_messages_eus" + @echo "... std_msgs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_cpp" + @echo "... std_msgs_generate_messages_lisp" + @echo "... std_msgs_generate_messages_eus" + @echo "... rosgraph_msgs_generate_messages_py" + @echo "... roscpp_generate_messages_lisp" + @echo "... geometry_msgs_generate_messages_nodejs" + @echo "... geometry_msgs_generate_messages_cpp" + @echo "... geometry_msgs_generate_messages_lisp" + @echo "... geometry_msgs_generate_messages_py" + @echo "... turtlesim_generate_messages_cpp" + @echo "... std_msgs_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_eus" + @echo "... std_srvs_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_lisp" + @echo "... turtlesim_generate_messages_eus" + @echo "... std_srvs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_lisp" + @echo "... turtlesim_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_py" + @echo "... roscpp_generate_messages_cpp" + @echo "... std_srvs_generate_messages_py" + @echo "... std_srvs_generate_messages_eus" +.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/atomic_configure/.rosinstall b/Basics/ros_ws/build/atomic_configure/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..5465b95704fd7f24610068399c9f906359b37e4c --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/ros_ws/devel/setup.sh diff --git a/Basics/ros_ws/build/atomic_configure/_setup_util.py b/Basics/ros_ws/build/atomic_configure/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/ros_ws/build/atomic_configure/env.sh b/Basics/ros_ws/build/atomic_configure/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/ros_ws/build/atomic_configure/local_setup.bash b/Basics/ros_ws/build/atomic_configure/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/ros_ws/build/atomic_configure/local_setup.sh b/Basics/ros_ws/build/atomic_configure/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..efeb4f61226ddf240d1c8c65b855cd7a15ae03ee --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/ros_ws/build/atomic_configure/local_setup.zsh b/Basics/ros_ws/build/atomic_configure/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/ros_ws/build/atomic_configure/setup.bash b/Basics/ros_ws/build/atomic_configure/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/ros_ws/build/atomic_configure/setup.sh b/Basics/ros_ws/build/atomic_configure/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..e26742d4b60307d3b22b2e1cd0fc50a83b0e9ff6 --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/ros_ws/build/atomic_configure/setup.zsh b/Basics/ros_ws/build/atomic_configure/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/ros_ws/build/atomic_configure/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/ros_ws/build/catkin/catkin_generated/version/package.cmake b/Basics/ros_ws/build/catkin/catkin_generated/version/package.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3e52286e4b786cdb7d535b4277fb060ff4415ddf --- /dev/null +++ b/Basics/ros_ws/build/catkin/catkin_generated/version/package.cmake @@ -0,0 +1,24 @@ +set(_CATKIN_CURRENT_PACKAGE "catkin") +set(catkin_VERSION "0.7.29") +set(catkin_MAINTAINER "Dirk Thomas ") +set(catkin_PACKAGE_FORMAT "3") +set(catkin_BUILD_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_BUILD_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_EXPORT_DEPENDS "google-mock" "gtest" "python-nose" "python3-nose" "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_BUILD_EXPORT_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_EXPORT_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILDTOOL_DEPENDS "cmake" "python-setuptools" "python3-setuptools") +set(catkin_BUILDTOOL_EXPORT_DEPENDS "cmake" "python3-setuptools") +set(catkin_EXEC_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_EXEC_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_EXEC_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_RUN_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy" "google-mock" "gtest" "python-nose" "python3-nose") +set(catkin_RUN_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_RUN_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_TEST_DEPENDS "python-mock" "python3-mock" "python-nose" "python3-nose") +set(catkin_DOC_DEPENDS ) +set(catkin_URL_WEBSITE "http://wiki.ros.org/catkin") +set(catkin_URL_BUGTRACKER "https://github.com/ros/catkin/issues") +set(catkin_URL_REPOSITORY "https://github.com/ros/catkin") +set(catkin_DEPRECATED "") \ No newline at end of file diff --git a/Basics/ros_ws/build/catkin_generated/env_cached.sh b/Basics/ros_ws/build/catkin_generated/env_cached.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6be91db5c97c428f17b165713d3f9a077c78786 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/env_cached.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup_cached.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup_cached.sh" +exec "$@" diff --git a/Basics/ros_ws/build/catkin_generated/generate_cached_setup.py b/Basics/ros_ws/build/catkin_generated/generate_cached_setup.py new file mode 100644 index 0000000000000000000000000000000000000000..2d1dde9e21d60f6a8e2af663121f81771c468c2d --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/generate_cached_setup.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +from __future__ import print_function + +import os +import stat +import sys + +# find the import for catkin's python package - either from source space or from an installed underlay +if os.path.exists(os.path.join('/opt/ros/melodic/share/catkin/cmake', 'catkinConfig.cmake.in')): + sys.path.insert(0, os.path.join('/opt/ros/melodic/share/catkin/cmake', '..', 'python')) +try: + from catkin.environment_cache import generate_environment_script +except ImportError: + # search for catkin package in all workspaces and prepend to path + for workspace in '/opt/ros/melodic'.split(';'): + python_path = os.path.join(workspace, 'lib/python2.7/dist-packages') + if os.path.isdir(os.path.join(python_path, 'catkin')): + sys.path.insert(0, python_path) + break + from catkin.environment_cache import generate_environment_script + +code = generate_environment_script('/home/hazyparker/project/learn_ros/Basics/ros_ws/devel/env.sh') + +output_filename = '/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/setup_cached.sh' +with open(output_filename, 'w') as f: + # print('Generate script for cached setup "%s"' % output_filename) + f.write('\n'.join(code)) + +mode = os.stat(output_filename).st_mode +os.chmod(output_filename, mode | stat.S_IXUSR) diff --git a/Basics/ros_ws/build/catkin_generated/installspace/.rosinstall b/Basics/ros_ws/build/catkin_generated/installspace/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..0b34d1dd7cf0746ad17abf957afd728db4a79a98 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.sh diff --git a/Basics/ros_ws/build/catkin_generated/installspace/_setup_util.py b/Basics/ros_ws/build/catkin_generated/installspace/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/ros_ws/build/catkin_generated/installspace/env.sh b/Basics/ros_ws/build/catkin_generated/installspace/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/ros_ws/build/catkin_generated/installspace/local_setup.bash b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/ros_ws/build/catkin_generated/installspace/local_setup.sh b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..a3a31d4d66078dbf9db5758da4ac9738e8a63d45 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/install} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/ros_ws/build/catkin_generated/installspace/local_setup.zsh b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/ros_ws/build/catkin_generated/installspace/setup.bash b/Basics/ros_ws/build/catkin_generated/installspace/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/ros_ws/build/catkin_generated/installspace/setup.sh b/Basics/ros_ws/build/catkin_generated/installspace/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..6445bd946fb373c2d07146f5218eb74f26697bab --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/install} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/ros_ws/build/catkin_generated/installspace/setup.zsh b/Basics/ros_ws/build/catkin_generated/installspace/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/installspace/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/ros_ws/build/catkin_generated/order_packages.cmake b/Basics/ros_ws/build/catkin_generated/order_packages.cmake new file mode 100644 index 0000000000000000000000000000000000000000..60bf8b7ab05dff8c39a51a37063eddd659f6a090 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/order_packages.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/em/order_packages.cmake.em + +set(CATKIN_ORDERED_PACKAGES "") +set(CATKIN_ORDERED_PACKAGE_PATHS "") +set(CATKIN_ORDERED_PACKAGES_IS_META "") +set(CATKIN_ORDERED_PACKAGES_BUILD_TYPE "") +list(APPEND CATKIN_ORDERED_PACKAGES "learning_topic") +list(APPEND CATKIN_ORDERED_PACKAGE_PATHS "learning_topic") +list(APPEND CATKIN_ORDERED_PACKAGES_IS_META "False") +list(APPEND CATKIN_ORDERED_PACKAGES_BUILD_TYPE "catkin") + +set(CATKIN_MESSAGE_GENERATORS ) + +set(CATKIN_METAPACKAGE_CMAKE_TEMPLATE "/usr/lib/python2.7/dist-packages/catkin_pkg/templates/metapackage.cmake.in") diff --git a/Basics/ros_ws/build/catkin_generated/order_packages.py b/Basics/ros_ws/build/catkin_generated/order_packages.py new file mode 100644 index 0000000000000000000000000000000000000000..8855229d2b8bca02a741273a43e59cc1b68f324c --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/order_packages.py @@ -0,0 +1,5 @@ +# generated from catkin/cmake/template/order_packages.context.py.in +source_root_dir = '/home/hazyparker/project/learn_ros/Basics/ros_ws/src' +whitelisted_packages = ''.split(';') if '' != '' else [] +blacklisted_packages = ''.split(';') if '' != '' else [] +underlay_workspaces = '/opt/ros/melodic'.split(';') if '/opt/ros/melodic' != '' else [] diff --git a/Basics/ros_ws/build/catkin_generated/setup_cached.sh b/Basics/ros_ws/build/catkin_generated/setup_cached.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f9a8728ef11d2b48699b2317e18133802a38ce1 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/setup_cached.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env sh +# generated from catkin/python/catkin/environment_cache.py + +# based on a snapshot of the environment before and after calling the setup script +# it emulates the modifications of the setup script without recurring computations + +# new environment variables + +# modified environment variables +export CMAKE_PREFIX_PATH="/home/hazyparker/project/learn_ros/Basics/ros_ws/devel:$CMAKE_PREFIX_PATH" +export LD_LIBRARY_PATH="/home/hazyparker/project/learn_ros/Basics/ros_ws/devel/lib:$LD_LIBRARY_PATH" +export PKG_CONFIG_PATH="/home/hazyparker/project/learn_ros/Basics/ros_ws/devel/lib/pkgconfig:$PKG_CONFIG_PATH" +export PWD='/home/hazyparker/project/learn_ros/Basics/ros_ws/build' +export ROSLISP_PACKAGE_DIRECTORIES='/home/hazyparker/project/learn_ros/Basics/ros_ws/devel/share/common-lisp' +export ROS_PACKAGE_PATH="/home/hazyparker/project/learn_ros/Basics/ros_ws/src:$ROS_PACKAGE_PATH" \ No newline at end of file diff --git a/Basics/ros_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp b/Basics/ros_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/ros_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp b/Basics/ros_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp new file mode 100644 index 0000000000000000000000000000000000000000..5e25fbf8a722c2eec099e7f19f8a67c184b33d4a --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp @@ -0,0 +1,255 @@ +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +from __future__ import print_function + +import os +import runpy +import sys +from argparse import ArgumentParser + +setup_modules = [] + +try: + import distutils.core + setup_modules.append(distutils.core) +except ImportError: + pass + +try: + import setuptools + setup_modules.append(setuptools) +except ImportError: + pass + +assert setup_modules, 'Must have distutils or setuptools installed' + + +def _get_locations(pkgs, package_dir): + """ + Based on setuptools logic and the package_dir dict, builds a dict of location roots for each pkg in pkgs. + + See http://docs.python.org/distutils/setupscript.html + + :returns: a dict {pkgname: root} for each pkgname in pkgs (and each of their parents) + """ + # package_dir contains a dict {package_name: relativepath} + # Example {'': 'src', 'foo': 'lib', 'bar': 'lib2'} + # + # '' means where to look for any package unless a parent package + # is listed so package bar.pot is expected at lib2/bar/pot, + # whereas package sup.dee is expected at src/sup/dee + # + # if package_dir does not state anything about a package, + # setuptool expects the package folder to be in the root of the + # project + locations = {} + allprefix = package_dir.get('', '') + for pkg in pkgs: + parent_location = None + splits = pkg.split('.') + # we iterate over compound name from parent to child + # so once we found parent, children just append to their parent + for key_len in range(len(splits)): + key = '.'.join(splits[:key_len + 1]) + if key not in locations: + if key in package_dir: + locations[key] = package_dir[key] + elif parent_location is not None: + locations[key] = os.path.join(parent_location, splits[key_len]) + else: + locations[key] = os.path.join(allprefix, key) + parent_location = locations[key] + return locations + + +def generate_cmake_file(package_name, version, scripts, package_dir, pkgs, modules, setup_module=None): + """ + Generate lines to add to a cmake file which will set variables. + + :param version: str, format 'int.int.int' + :param scripts: [list of str]: relative paths to scripts + :param package_dir: {modulename: path} + :param pkgs: [list of str] python_packages declared in catkin package + :param modules: [list of str] python modules + :param setup_module: str, setuptools or distutils + """ + prefix = '%s_SETUP_PY' % package_name + result = [] + if setup_module: + result.append(r'set(%s_SETUP_MODULE "%s")' % (prefix, setup_module)) + result.append(r'set(%s_VERSION "%s")' % (prefix, version)) + result.append(r'set(%s_SCRIPTS "%s")' % (prefix, ';'.join(scripts))) + + # Remove packages with '.' separators. + # + # setuptools allows specifying submodules in other folders than + # their parent + # + # The symlink approach of catkin does not work with such submodules. + # In the common case, this does not matter as the submodule is + # within the containing module. We verify this assumption, and if + # it passes, we remove submodule packages. + locations = _get_locations(pkgs, package_dir) + for pkgname, location in locations.items(): + if '.' not in pkgname: + continue + splits = pkgname.split('.') + # hack: ignore write-combining setup.py files for msg and srv files + if splits[1] in ['msg', 'srv']: + continue + # check every child has the same root folder as its parent + root_name = splits[0] + root_location = location + for _ in range(len(splits) - 1): + root_location = os.path.dirname(root_location) + if root_location != locations[root_name]: + raise RuntimeError( + 'catkin_export_python does not support setup.py files that combine across multiple directories: %s in %s, %s in %s' % (pkgname, location, root_name, locations[root_name])) + + # If checks pass, remove all submodules + pkgs = [p for p in pkgs if '.' not in p] + + resolved_pkgs = [] + for pkg in pkgs: + resolved_pkgs += [locations[pkg]] + + result.append(r'set(%s_PACKAGES "%s")' % (prefix, ';'.join(pkgs))) + result.append(r'set(%s_PACKAGE_DIRS "%s")' % (prefix, ';'.join(resolved_pkgs).replace('\\', '/'))) + + # skip modules which collide with package names + filtered_modules = [] + for modname in modules: + splits = modname.split('.') + # check all parents too + equals_package = [('.'.join(splits[:-i]) in locations) for i in range(len(splits))] + if any(equals_package): + continue + filtered_modules.append(modname) + module_locations = _get_locations(filtered_modules, package_dir) + + result.append(r'set(%s_MODULES "%s")' % (prefix, ';'.join(['%s.py' % m.replace('.', '/') for m in filtered_modules]))) + result.append(r'set(%s_MODULE_DIRS "%s")' % (prefix, ';'.join([module_locations[m] for m in filtered_modules]).replace('\\', '/'))) + + return result + + +def _create_mock_setup_function(setup_module, package_name, outfile): + """ + Create a function to call instead of distutils.core.setup or setuptools.setup. + + It just captures some args and writes them into a file that can be used from cmake. + + :param package_name: name of the package + :param outfile: filename that cmake will use afterwards + :returns: a function to replace disutils.core.setup and setuptools.setup + """ + + def setup(*args, **kwargs): + """Check kwargs and write a scriptfile.""" + if 'version' not in kwargs: + sys.stderr.write("\n*** Unable to find 'version' in setup.py of %s\n" % package_name) + raise RuntimeError('version not found in setup.py') + version = kwargs['version'] + package_dir = kwargs.get('package_dir', {}) + + pkgs = kwargs.get('packages', []) + scripts = kwargs.get('scripts', []) + modules = kwargs.get('py_modules', []) + + unsupported_args = [ + 'entry_points', + 'exclude_package_data', + 'ext_modules ', + 'ext_package', + 'include_package_data', + 'namespace_packages', + 'setup_requires', + 'use_2to3', + 'zip_safe'] + used_unsupported_args = [arg for arg in unsupported_args if arg in kwargs] + if used_unsupported_args: + sys.stderr.write('*** Arguments %s to setup() not supported in catkin devel space in setup.py of %s\n' % (used_unsupported_args, package_name)) + + result = generate_cmake_file(package_name=package_name, + version=version, + scripts=scripts, + package_dir=package_dir, + pkgs=pkgs, + modules=modules, + setup_module=setup_module) + with open(outfile, 'w') as out: + out.write('\n'.join(result)) + + return setup + + +def main(): + """Script main, parses arguments and invokes Dummy.setup indirectly.""" + parser = ArgumentParser(description='Utility to read setup.py values from cmake macros. Creates a file with CMake set commands setting variables.') + parser.add_argument('package_name', help='Name of catkin package') + parser.add_argument('setupfile_path', help='Full path to setup.py') + parser.add_argument('outfile', help='Where to write result to') + + args = parser.parse_args() + + # print("%s" % sys.argv) + # PACKAGE_NAME = sys.argv[1] + # OUTFILE = sys.argv[3] + # print("Interrogating setup.py for package %s into %s " % (PACKAGE_NAME, OUTFILE), + # file=sys.stderr) + + # print("executing %s" % args.setupfile_path) + + # be sure you're in the directory containing + # setup.py so the sys.path manipulation works, + # so the import of __version__ works + os.chdir(os.path.dirname(os.path.abspath(args.setupfile_path))) + + # patch setup() function of distutils and setuptools for the + # context of evaluating setup.py + backup_modules = {} + try: + + for module in setup_modules: + backup_modules[id(module)] = module.setup + module.setup = _create_mock_setup_function( + setup_module=module.__name__, package_name=args.package_name, outfile=args.outfile) + + runpy.run_path(args.setupfile_path) + finally: + for module in setup_modules: + module.setup = backup_modules[id(module)] + + +if __name__ == '__main__': + main() diff --git a/Basics/ros_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp b/Basics/ros_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp new file mode 100644 index 0000000000000000000000000000000000000000..7ec7539aeb8d283237df74173efb822b3db9a467 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp @@ -0,0 +1,70 @@ +# generated from catkin/cmake/em/order_packages.cmake.em +@{ +import os +try: + from catkin_pkg.cmake import get_metapackage_cmake_template_path +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.cmake import get_metapackage_cmake_template_path" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +try: + from catkin_pkg.topological_order import topological_order +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.topological_order import topological_order" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +try: + from catkin_pkg.package import InvalidPackage +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.package import InvalidPackage" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +# vars defined in order_packages.context.py.in +try: + ordered_packages = topological_order(os.path.normpath(source_root_dir), whitelisted=whitelisted_packages, blacklisted=blacklisted_packages, underlay_workspaces=underlay_workspaces) +except InvalidPackage as e: + print('message(FATAL_ERROR "%s")' % ('%s' % e).replace('"', '\\"')) + ordered_packages = [] +fatal_error = False +}@ + +set(CATKIN_ORDERED_PACKAGES "") +set(CATKIN_ORDERED_PACKAGE_PATHS "") +set(CATKIN_ORDERED_PACKAGES_IS_META "") +set(CATKIN_ORDERED_PACKAGES_BUILD_TYPE "") +@[for path, package in ordered_packages]@ +@[if path is None]@ +message(FATAL_ERROR "Circular dependency in subset of packages:\n@package") +@{ +fatal_error = True +}@ +@[elif package.name != 'catkin']@ +list(APPEND CATKIN_ORDERED_PACKAGES "@(package.name)") +list(APPEND CATKIN_ORDERED_PACKAGE_PATHS "@(path.replace('\\','/'))") +list(APPEND CATKIN_ORDERED_PACKAGES_IS_META "@(str('metapackage' in [e.tagname for e in package.exports]))") +@{ +package.evaluate_conditions(os.environ) +try: + build_type = package.get_build_type() +except InvalidPackage: + build_type = None +}@ +@[if build_type is None]@ +message(FATAL_ERROR "Only one element is permitted for package '@(package.name)'.") +@{ +fatal_error = True +}@ +@[else]@ +list(APPEND CATKIN_ORDERED_PACKAGES_BUILD_TYPE "@(package.get_build_type())") +@[end if]@ +@{ +deprecated = [e for e in package.exports if e.tagname == 'deprecated'] +}@ +@[if deprecated]@ +message("WARNING: Package '@(package.name)' is deprecated@(' (%s)' % deprecated[0].content if deprecated[0].content else '')") +@[end if]@ +@[end if]@ +@[end for]@ + +@[if not fatal_error]@ +@{ +message_generators = [package.name for (_, package) in ordered_packages if 'message_generator' in [e.tagname for e in package.exports]] +}@ +set(CATKIN_MESSAGE_GENERATORS @(' '.join(message_generators))) +@[end if]@ + +set(CATKIN_METAPACKAGE_CMAKE_TEMPLATE "@(get_metapackage_cmake_template_path().replace('\\','/'))") diff --git a/Basics/ros_ws/build/catkin_generated/stamps/Project/package.xml.stamp b/Basics/ros_ws/build/catkin_generated/stamps/Project/package.xml.stamp new file mode 100644 index 0000000000000000000000000000000000000000..9a1f675ed1b6593c5daab8c86b7ef272d3510a46 --- /dev/null +++ b/Basics/ros_ws/build/catkin_generated/stamps/Project/package.xml.stamp @@ -0,0 +1,48 @@ + + + + catkin + 0.7.29 + Low-level build system macros and infrastructure for ROS. + Dirk Thomas + BSD + + http://wiki.ros.org/catkin + https://github.com/ros/catkin/issues + https://github.com/ros/catkin + + Troy Straszheim + Morten Kjaergaard + Brian Gerkey + Dirk Thomas + + python-argparse + python-catkin-pkg + python3-catkin-pkg + python-empy + python3-empy + + cmake + python-setuptools + python3-setuptools + + cmake + python3-setuptools + + google-mock + gtest + python-nose + python3-nose + + python-mock + python3-mock + python-nose + python3-nose + + + + + + diff --git a/Basics/ros_ws/build/catkin_make.cache b/Basics/ros_ws/build/catkin_make.cache new file mode 100644 index 0000000000000000000000000000000000000000..e235dcef876339163a500d68cf12c8fb7c75b161 --- /dev/null +++ b/Basics/ros_ws/build/catkin_make.cache @@ -0,0 +1,2 @@ +learning_topic +-DCMAKE_EXPORT_COMPILE_COMMANDS=Yes -DCATKIN_DEVEL_PREFIX=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel -DCMAKE_INSTALL_PREFIX=/home/hazyparker/project/learn_ros/Basics/ros_ws/install -G Unix Makefiles \ No newline at end of file diff --git a/Basics/ros_ws/build/cmake_install.cmake b/Basics/ros_ws/build/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e4f391b7de6872bcfb4ff4a639ce3b6f2cc32a7c --- /dev/null +++ b/Basics/ros_ws/build/cmake_install.cmake @@ -0,0 +1,147 @@ +# Install script for directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/ros_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + + if (NOT EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") + file(MAKE_DIRECTORY "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") + endif() + if (NOT EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/.catkin") + file(WRITE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/.catkin" "") + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/_setup_util.py") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE PROGRAM FILES "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/_setup_util.py") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/env.sh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE PROGRAM FILES "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/env.sh") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.bash;/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.bash") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/setup.bash" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/local_setup.bash" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.sh;/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.sh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/setup.sh" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/local_setup.sh" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.zsh;/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.zsh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/setup.zsh" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/local_setup.zsh" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/install/.rosinstall") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/catkin_generated/installspace/.rosinstall") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/cmake_install.cmake") + include("/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Basics/ros_ws/build/compile_commands.json b/Basics/ros_ws/build/compile_commands.json new file mode 100644 index 0000000000000000000000000000000000000000..b6438249919029ed08ac3e89901fbd8e909dd263 --- /dev/null +++ b/Basics/ros_ws/build/compile_commands.json @@ -0,0 +1,37 @@ +[ +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc", + "file": "/usr/src/googletest/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /usr/src/googletest/googlemock/src/gmock_main.cc", + "file": "/usr/src/googletest/googlemock/src/gmock_main.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc", + "file": "/usr/src/googletest/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_main_EXPORTS -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /usr/src/googletest/googletest/src/gtest_main.cc", + "file": "/usr/src/googletest/googletest/src/gtest_main.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_EXPORTS -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +} +] \ No newline at end of file diff --git a/Basics/ros_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/ros_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a9ed7956fcaed88131341e7012bdaf561ada5aed --- /dev/null +++ b/Basics/ros_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/ros_ws/build") + +# 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}) diff --git a/Basics/ros_ws/build/gtest/CMakeFiles/progress.marks b/Basics/ros_ws/build/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/ros_ws/build/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/ros_ws/build/gtest/CTestTestfile.cmake b/Basics/ros_ws/build/gtest/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6d44a24d2cd148b388e170c247804e78d7f7b3f1 --- /dev/null +++ b/Basics/ros_ws/build/gtest/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest +# Build directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("googlemock") diff --git a/Basics/ros_ws/build/gtest/Makefile b/Basics/ros_ws/build/gtest/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..04c6456e050b29f646d3210696094cd915c387b6 --- /dev/null +++ b/Basics/ros_ws/build/gtest/Makefile @@ -0,0 +1,196 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# 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 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 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 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 + +# 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 rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(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 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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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 "... edit_cache" + @echo "... list_install_components" + @echo "... test" + @echo "... install/local" + @echo "... rebuild_cache" + @echo "... install" +.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: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/gtest/cmake_install.cmake b/Basics/ros_ws/build/gtest/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9592365e36b8a36732c8a89fed171d935e57ad20 --- /dev/null +++ b/Basics/ros_ws/build/gtest/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /usr/src/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/ros_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/cmake_install.cmake") + +endif() + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a9ed7956fcaed88131341e7012bdaf561ada5aed --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/ros_ws/build") + +# 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}) diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2281bd0ac2406455c9246671e7fa66907e0119fd --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake @@ -0,0 +1,30 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock-all.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googlemock/include" + "/usr/src/googletest/googlemock" + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c0727b75fffedb438ac3029fca01b514f92b6524 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make @@ -0,0 +1,140 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/CMakeFiles/gmock.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/CMakeFiles/gmock.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/CMakeFiles/gmock.dir/flags.make + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o: gtest/googlemock/CMakeFiles/gmock.dir/flags.make +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: gtest/googlemock/CMakeFiles/gmock.dir/flags.make +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: /usr/src/googletest/googlemock/src/gmock-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/src/gmock-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock-all.cc > CMakeFiles/gmock.dir/src/gmock-all.cc.i + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/src/gmock-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock-all.cc -o CMakeFiles/gmock.dir/src/gmock-all.cc.s + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o + + +# Object files for target gmock +gmock_OBJECTS = \ +"CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" \ +"CMakeFiles/gmock.dir/src/gmock-all.cc.o" + +# External object files for target gmock +gmock_EXTERNAL_OBJECTS = + +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/build.make +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libgmock.so" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/CMakeFiles/gmock.dir/build: gtest/googlemock/libgmock.so + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/build + +gtest/googlemock/CMakeFiles/gmock.dir/requires: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock.dir/requires: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/requires + +gtest/googlemock/CMakeFiles/gmock.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/clean + +gtest/googlemock/CMakeFiles/gmock.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /usr/src/googletest/googlemock /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/depend + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..80ceb930926f2d103df9de5cc857ce4cb41e44d1 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + "CMakeFiles/gmock.dir/src/gmock-all.cc.o" + "libgmock.pdb" + "libgmock.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..7a05e2f1995722edd1ef296a9e722270b2f5bb3d --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..b568ee83dd8c880031c540f157f2889b2cd9fbff --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..b11c6309977b5fa46dd01dc3b7b8f4201500aa9a --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgmock.so -o libgmock.so CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o CMakeFiles/gmock.dir/src/gmock-all.cc.o -lpthread diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6a9dc74f48190611094be92ae37d081d83beb533 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f41ca900400f1115254db47353bc5ee95f31be03 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake @@ -0,0 +1,31 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock-all.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock_main.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googlemock/include" + "/usr/src/googletest/googlemock" + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ff163d8e9359a2c821cdbfaacb1307e927898d9f --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make @@ -0,0 +1,167 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o: /usr/src/googletest/googlemock/src/gmock-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock-all.cc > CMakeFiles/gmock_main.dir/src/gmock-all.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock-all.cc -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: /usr/src/googletest/googlemock/src/gmock_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /usr/src/googletest/googlemock/src/gmock_main.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock_main.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock_main.cc > CMakeFiles/gmock_main.dir/src/gmock_main.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock_main.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock_main.cc -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o + + +# Object files for target gmock_main +gmock_main_OBJECTS = \ +"CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" \ +"CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" \ +"CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + +# External object files for target gmock_main +gmock_main_EXTERNAL_OBJECTS = + +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/build.make +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX shared library libgmock_main.so" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/CMakeFiles/gmock_main.dir/build: gtest/googlemock/libgmock_main.so + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/build + +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +gtest/googlemock/CMakeFiles/gmock_main.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /usr/src/googletest/googlemock /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/depend + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b05bbcad7080a5b0b03686856353a0aa67eb116c --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + "libgmock_main.pdb" + "libgmock_main.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4a18b61b44c09e7c55e5cfcaedb4d5c068d9de16 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..564c3c2e378179147f861a51c6d9bbe720b856a2 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c2714f77b4a431f35458e78c71e5a848b905cb6 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgmock_main.so -o libgmock_main.so CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -lpthread diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b78c19732f4ae57a653abec5d43b5631408518cd --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 +CMAKE_PROGRESS_3 = 6 +CMAKE_PROGRESS_4 = 7 + diff --git a/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/progress.marks b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/ros_ws/build/gtest/googlemock/CTestTestfile.cmake b/Basics/ros_ws/build/gtest/googlemock/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..796414ddbf1b663dff757118f74195678f7a79f9 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest/googlemock +# Build directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") diff --git a/Basics/ros_ws/build/gtest/googlemock/Makefile b/Basics/ros_ws/build/gtest/googlemock/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f519c41f5133411f4f0133ad33e811b4f9922ac4 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/Makefile @@ -0,0 +1,324 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# 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 +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 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 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 + +# 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 -H$(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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +# Convenience name for target. +gtest/googlemock/CMakeFiles/gmock.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: gtest/googlemock/CMakeFiles/gmock.dir/rule + +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +__/googletest/src/gtest-all.o: __/googletest/src/gtest-all.cc.o + +.PHONY : __/googletest/src/gtest-all.o + +# target to build an object file +__/googletest/src/gtest-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o +.PHONY : __/googletest/src/gtest-all.cc.o + +__/googletest/src/gtest-all.i: __/googletest/src/gtest-all.cc.i + +.PHONY : __/googletest/src/gtest-all.i + +# target to preprocess a source file +__/googletest/src/gtest-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i +.PHONY : __/googletest/src/gtest-all.cc.i + +__/googletest/src/gtest-all.s: __/googletest/src/gtest-all.cc.s + +.PHONY : __/googletest/src/gtest-all.s + +# target to generate assembly for a file +__/googletest/src/gtest-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s +.PHONY : __/googletest/src/gtest-all.cc.s + +src/gmock-all.o: src/gmock-all.cc.o + +.PHONY : src/gmock-all.o + +# target to build an object file +src/gmock-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +.PHONY : src/gmock-all.cc.o + +src/gmock-all.i: src/gmock-all.cc.i + +.PHONY : src/gmock-all.i + +# target to preprocess a source file +src/gmock-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.i + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i +.PHONY : src/gmock-all.cc.i + +src/gmock-all.s: src/gmock-all.cc.s + +.PHONY : src/gmock-all.s + +# target to generate assembly for a file +src/gmock-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.s + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s +.PHONY : src/gmock-all.cc.s + +src/gmock_main.o: src/gmock_main.cc.o + +.PHONY : src/gmock_main.o + +# target to build an object file +src/gmock_main.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +.PHONY : src/gmock_main.cc.o + +src/gmock_main.i: src/gmock_main.cc.i + +.PHONY : src/gmock_main.i + +# target to preprocess a source file +src/gmock_main.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i +.PHONY : src/gmock_main.cc.i + +src/gmock_main.s: src/gmock_main.cc.s + +.PHONY : src/gmock_main.s + +# target to generate assembly for a file +src/gmock_main.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s +.PHONY : src/gmock_main.cc.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" + @echo "... install/local" + @echo "... gmock_main" + @echo "... test" + @echo "... list_install_components" + @echo "... gmock" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... __/googletest/src/gtest-all.o" + @echo "... __/googletest/src/gtest-all.i" + @echo "... __/googletest/src/gtest-all.s" + @echo "... src/gmock-all.o" + @echo "... src/gmock-all.i" + @echo "... src/gmock-all.s" + @echo "... src/gmock_main.o" + @echo "... src/gmock_main.i" + @echo "... src/gmock_main.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: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/gtest/googlemock/cmake_install.cmake b/Basics/ros_ws/build/gtest/googlemock/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8303c38e9b16c2826b68d29bc7ea459c7aad590c --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /usr/src/googletest/googlemock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/ros_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/cmake_install.cmake") + +endif() + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a9ed7956fcaed88131341e7012bdaf561ada5aed --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/ros_ws/build") + +# 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}) diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cfbf0910677324b168f6c6233500604206ea944e --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake @@ -0,0 +1,27 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1ac2728414b5389d4a70e7e66fb7bf4f9d753db8 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make @@ -0,0 +1,113 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest.dir/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gtest.dir/src/gtest-all.cc.i + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest.dir/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gtest.dir/src/gtest-all.cc.s + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides.build: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o + + +# Object files for target gtest +gtest_OBJECTS = \ +"CMakeFiles/gtest.dir/src/gtest-all.cc.o" + +# External object files for target gtest +gtest_EXTERNAL_OBJECTS = + +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libgtest.so" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/build: gtest/googlemock/gtest/libgtest.so + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/requires: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/requires + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /usr/src/googletest/googletest /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3fcee237269ffb3fa8b2b5bb0c5f865266a2fe0e --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest.dir/src/gtest-all.cc.o" + "libgtest.pdb" + "libgtest.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..37ac348dbdee84ac90462c82dae3a4f7ca757dc1 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest. +# This may be replaced when dependencies are built. diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..65dc7cad1a9f0c167731ef6812c84f308db3a274 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..524cf25c7f04cec7ad71a0f629f9009997099bae --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgtest.so -o libgtest.so CMakeFiles/gtest.dir/src/gtest-all.cc.o -L/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/src -Wl,-rpath,/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/src -lpthread diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..895faac227d8e6c3c5be24b8edcae9c3c7edfcb5 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 8 +CMAKE_PROGRESS_2 = 9 + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..09f7e20fe8b203d3ef0791d1bff27c959ee66680 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake @@ -0,0 +1,28 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest_main.cc" "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..086f6b55aadbd55cbe60ca4d709c1c49c820de6f --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: /usr/src/googletest/googletest/src/gtest_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /usr/src/googletest/googletest/src/gtest_main.cc + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest_main.dir/src/gtest_main.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest_main.cc > CMakeFiles/gtest_main.dir/src/gtest_main.cc.i + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest_main.dir/src/gtest_main.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest_main.cc -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.s + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires: + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides.build +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides.build: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o + + +# Object files for target gtest_main +gtest_main_OBJECTS = \ +"CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + +# External object files for target gtest_main +gtest_main_EXTERNAL_OBJECTS = + +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/libgtest.so +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libgtest_main.so" + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build: gtest/googlemock/gtest/libgtest_main.so + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/requires: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/requires + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /usr/src/googletest/googletest /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..24048f35a317d8fa438e6cfb678bf8b0a7200b8f --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + "libgtest_main.pdb" + "libgtest_main.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..1d67c1ab524a35ba28518428e16051e4728c8c11 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest_main. +# This may be replaced when dependencies are built. diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..da6a521bedce11c9cc933ba81dd274826cebb7c2 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_main_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..f30af9c33a0a17c9c958c88983ab3a691499d316 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgtest_main.so -o libgtest_main.so CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -L/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/src -Wl,-rpath,/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/src:/home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest -lpthread libgtest.so -lpthread diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..17875e3238da3ecdefe39c6875b6b441dc576689 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 10 +CMAKE_PROGRESS_2 = 11 + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b210c0847933c90a2e0beac369aa550821491020 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest/googletest +# Build directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/Makefile b/Basics/ros_ws/build/gtest/googlemock/gtest/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..919724014e49c9ab3868493e049cc494fd2153e9 --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/Makefile @@ -0,0 +1,288 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# 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 +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 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 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 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 + +# 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 -H$(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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/ros_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +# Convenience name for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +src/gtest-all.o: src/gtest-all.cc.o + +.PHONY : src/gtest-all.o + +# target to build an object file +src/gtest-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +.PHONY : src/gtest-all.cc.o + +src/gtest-all.i: src/gtest-all.cc.i + +.PHONY : src/gtest-all.i + +# target to preprocess a source file +src/gtest-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i +.PHONY : src/gtest-all.cc.i + +src/gtest-all.s: src/gtest-all.cc.s + +.PHONY : src/gtest-all.s + +# target to generate assembly for a file +src/gtest-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s +.PHONY : src/gtest-all.cc.s + +src/gtest_main.o: src/gtest_main.cc.o + +.PHONY : src/gtest_main.o + +# target to build an object file +src/gtest_main.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +.PHONY : src/gtest_main.cc.o + +src/gtest_main.i: src/gtest_main.cc.i + +.PHONY : src/gtest_main.i + +# target to preprocess a source file +src/gtest_main.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i +.PHONY : src/gtest_main.cc.i + +src/gtest_main.s: src/gtest_main.cc.s + +.PHONY : src/gtest_main.s + +# target to generate assembly for a file +src/gtest_main.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s +.PHONY : src/gtest_main.cc.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" + @echo "... edit_cache" + @echo "... install/local" + @echo "... test" + @echo "... gtest_main" + @echo "... list_install_components" + @echo "... gtest" + @echo "... rebuild_cache" + @echo "... src/gtest-all.o" + @echo "... src/gtest-all.i" + @echo "... src/gtest-all.s" + @echo "... src/gtest_main.o" + @echo "... src/gtest_main.i" + @echo "... src/gtest_main.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: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/gtest/googlemock/gtest/cmake_install.cmake b/Basics/ros_ws/build/gtest/googlemock/gtest/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..075c9135b50a1b69876d647972bb8b09ed2f4ccd --- /dev/null +++ b/Basics/ros_ws/build/gtest/googlemock/gtest/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /usr/src/googletest/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/ros_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/Basics/ros_ws/build/install_manifest.txt b/Basics/ros_ws/build/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..d98e5fe8dabac9d18b402a5e78eafd04c24d4521 --- /dev/null +++ b/Basics/ros_ws/build/install_manifest.txt @@ -0,0 +1,9 @@ +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/_setup_util.py +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/env.sh +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.bash +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.bash +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.sh +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.sh +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.zsh +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/local_setup.zsh +/home/hazyparker/project/learn_ros/Basics/ros_ws/install/.rosinstall \ No newline at end of file diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..54a8882db35777a8107cdac1c0093edd0bddb5bc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hazyparker/project/learn_ros/Basics/ros_ws/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/ros_ws/build") + +# 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}) diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5aea45233200a0d90ada4c266379aa4287051271 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for geometry_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make + +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make + +.PHONY : geometry_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build: geometry_msgs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..820ac958f43c6eebf66f6d6d990cc6f9ee92bdee --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..675616e703a6cda591b81b063b9053e3f0cac219 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for geometry_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make + +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make + +.PHONY : geometry_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build: geometry_msgs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..67f285a2b286be7fc34e84068b61e34e06956953 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..07941e642c622ef01a392c19ca5dbc367bdc6df4 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for geometry_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make + +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make + +.PHONY : geometry_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build: geometry_msgs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1e1c8fa8835a35da1844bebfcf48761dffbbb744 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..32551ccf8ca3b1603a2b0a97c6f00c51ea5af9e2 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for geometry_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make + +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : geometry_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build: geometry_msgs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a10d1c0a7d1c206f0b4fa6bad096f015b45ac47e --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6b9fa49580b38e53fa5812f91e5678164303ecee --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for geometry_msgs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make + +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make + +.PHONY : geometry_msgs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build: geometry_msgs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37b46276801d2babea1a13a48a7cfd37a2e3ef6c --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/progress.marks b/Basics/ros_ws/build/learning_topic/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..57749d6d87dfc61f80df8bee620e595b76dbb324 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for roscpp_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make + +roscpp_generate_messages_cpp: learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make + +.PHONY : roscpp_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build: roscpp_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf353654a022affaf54224fbd1c18177f271b037 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b8ab2eb8df33a3c27426e04d49b54b9e5cf2729a --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for roscpp_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make + +roscpp_generate_messages_eus: learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make + +.PHONY : roscpp_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build: roscpp_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..61700fa61598b5a7c45ee26eac646fe367101992 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3594e9c4159b6b93ea525115518a38d91312df2a --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for roscpp_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make + +roscpp_generate_messages_lisp: learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make + +.PHONY : roscpp_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build: roscpp_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..492a50bd91a039addba1281e459d4aee16b465e4 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2c6da1611371686b3e87f78a7ce657360383a493 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for roscpp_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make + +roscpp_generate_messages_nodejs: learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make + +.PHONY : roscpp_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build: roscpp_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37945a670242e2de6d8465b3474da9eb383ab588 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..465fd2c946823fcd15109157c0553d2bb39e3202 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for roscpp_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/progress.make + +roscpp_generate_messages_py: learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make + +.PHONY : roscpp_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build: roscpp_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build + +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2c13747338b810ad1480558faa521f8adb7d395b --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9100b78fbbbdb079301c70c30a1f4f00e532c30b --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make + +rosgraph_msgs_generate_messages_cpp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build: rosgraph_msgs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..720bdd0edac46cb588da30503f36902d22b1f3bd --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9534c8a0f14f2878ef6a42beb5f92dab472ade9d --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make + +rosgraph_msgs_generate_messages_eus: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build: rosgraph_msgs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5610f8400a30f1c9e738841c6a11b635aaeb3648 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e70008c76e57ad7470e061fb4af96563ce15e8ec --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make + +rosgraph_msgs_generate_messages_lisp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build: rosgraph_msgs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cdd6e3fce75ecbc3ad7295b674353e85f77ba7a5 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..aaf8fc4eae7deed9e5f05882f8e2f3e409b3f402 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make + +rosgraph_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build: rosgraph_msgs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37bf13dc24b1724d4b85b9617056c744d5e99df3 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..32414581cfb5c2aab56ed05ab6a1200f44fa74e0 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make + +rosgraph_msgs_generate_messages_py: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build: rosgraph_msgs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..de801d4c76b9fbe39fc2cdad82bc436399718f92 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..0fb1535f175c741acf5477c033d467393ea81c86 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make + +std_msgs_generate_messages_cpp: learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make + +.PHONY : std_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build: std_msgs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0d092bf7dcb1a5955b6c2c4eef8f16df0593f3ea --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..76b172094edafa400dc1da867a2856861b6b0ce1 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make + +std_msgs_generate_messages_eus: learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make + +.PHONY : std_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build: std_msgs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..855155ec96fb985c24a72c15e128f656d9f6065a --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2e80b33562daeba97604e366429704baaea47a06 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make + +std_msgs_generate_messages_lisp: learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make + +.PHONY : std_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build: std_msgs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b995112eab054ad92b9ec2bd7533b328f13f306e --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d093e22cda887f797e30ed6927c42c90a1a807fb --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make + +std_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : std_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build: std_msgs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f5f42ae06987e0d5a16acccec495927a20b926de --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..78c7911d11c00dabef7876971195d25cc648a2bd --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_msgs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make + +std_msgs_generate_messages_py: learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make + +.PHONY : std_msgs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build: std_msgs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..15da12c8d9c8a0533d756cbfb4fbf902c32cf641 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7a8bbe28b3c1bd3b2af0591e0d7c099fd3850f61 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_srvs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make + +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make + +.PHONY : std_srvs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build: std_srvs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c3ab691ca5352a49079c42e41b476fefbbeefa85 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7f19c759fda9ae4b7474f584191da9328e929e8b --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_srvs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make + +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make + +.PHONY : std_srvs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build: std_srvs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..32929d8d2b244c1192b1b838f915ca323d50be7e --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..507390eda9c98e5ceaff497f8db2659ab02c0315 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_srvs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make + +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make + +.PHONY : std_srvs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build: std_srvs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c9d1c7885c2d7b5689548d698aa732a8aefc384 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..998a783548904b154faf78e989813c114716a8a1 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_srvs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make + +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make + +.PHONY : std_srvs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build: std_srvs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3550ddd7594bcf5cada332ec49a3ff4e54ddb201 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3d1cc6b326819bb19863c764d99ac82128cd1317 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for std_srvs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make + +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make + +.PHONY : std_srvs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build: std_srvs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..093ce8c796096144546c07bbfcb125910851da61 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ffb9ba57fb305413d8cb9bf2ac251dc10191c4ba --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for turtlesim_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make + +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make + +.PHONY : turtlesim_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build: turtlesim_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..261a3272df46b73eb413f6624dd598277b044ecf --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..976a9788bd86f472d971fc94ffd2df3634ea67f9 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for turtlesim_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make + +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make + +.PHONY : turtlesim_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build: turtlesim_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a2907b1cbf6571230230fdbd8cf6b2132611d6a7 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..60cb825fa06ca94bc184c980cd77c96d55dd10e5 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for turtlesim_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make + +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make + +.PHONY : turtlesim_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build: turtlesim_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a28e8844c677b0030f70e8cc1bf18c87348d0b48 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9b24e651f4af066e3b9a82b9d88b3ecc13cd774d --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for turtlesim_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make + +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make + +.PHONY : turtlesim_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build: turtlesim_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8e4c002f01c765322e63765b48e039440730c176 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b9707cf0cc13fa748c47fcac4fb17427c215fcd6 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +# Utility rule file for turtlesim_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make + +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make + +.PHONY : turtlesim_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build: turtlesim_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/ros_ws/src /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend + diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3bad896eeaacf05d827a26a43d64ba29b0d23c01 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/ros_ws/build/learning_topic/CTestTestfile.cmake b/Basics/ros_ws/build/learning_topic/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..03ee2571f9c09839080395f71757dcf7281a05de --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic +# Build directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/Basics/ros_ws/build/learning_topic/Makefile b/Basics/ros_ws/build/learning_topic/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..5770f08e05d42234eba211eb4829024d6b10ee2b --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/Makefile @@ -0,0 +1,676 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/ros_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/ros_ws/build + +#============================================================================= +# 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 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 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 + +# 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 rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(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 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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/ros_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule + +# Convenience name for target. +roscpp_generate_messages_py: learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/rule + +.PHONY : roscpp_generate_messages_py + +# fast build rule for target. +roscpp_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_py.dir/build +.PHONY : roscpp_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_py: learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +.PHONY : std_msgs_generate_messages_py + +# fast build rule for target. +std_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_py.dir/build +.PHONY : std_msgs_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +.PHONY : std_srvs_generate_messages_lisp + +# fast build rule for target. +std_srvs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build +.PHONY : std_srvs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +.PHONY : geometry_msgs_generate_messages_eus + +# fast build rule for target. +geometry_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build +.PHONY : geometry_msgs_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +# Convenience name for target. +roscpp_generate_messages_nodejs: learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +.PHONY : roscpp_generate_messages_nodejs + +# fast build rule for target. +roscpp_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_nodejs.dir/build +.PHONY : roscpp_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +# Convenience name for target. +roscpp_generate_messages_eus: learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +.PHONY : roscpp_generate_messages_eus + +# fast build rule for target. +roscpp_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_eus.dir/build +.PHONY : roscpp_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +.PHONY : std_msgs_generate_messages_nodejs + +# fast build rule for target. +std_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build +.PHONY : std_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_cpp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# fast build rule for target. +rosgraph_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build +.PHONY : rosgraph_msgs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_lisp: learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +.PHONY : std_msgs_generate_messages_lisp + +# fast build rule for target. +std_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_lisp.dir/build +.PHONY : std_msgs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_eus: learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +.PHONY : std_msgs_generate_messages_eus + +# fast build rule for target. +std_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_eus.dir/build +.PHONY : std_msgs_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_py: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_py + +# fast build rule for target. +rosgraph_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build +.PHONY : rosgraph_msgs_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_lisp: learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +.PHONY : roscpp_generate_messages_lisp + +# fast build rule for target. +roscpp_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_lisp.dir/build +.PHONY : roscpp_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +.PHONY : geometry_msgs_generate_messages_nodejs + +# fast build rule for target. +geometry_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build +.PHONY : geometry_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +.PHONY : geometry_msgs_generate_messages_cpp + +# fast build rule for target. +geometry_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build +.PHONY : geometry_msgs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +.PHONY : geometry_msgs_generate_messages_lisp + +# fast build rule for target. +geometry_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build +.PHONY : geometry_msgs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +.PHONY : geometry_msgs_generate_messages_py + +# fast build rule for target. +geometry_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build +.PHONY : geometry_msgs_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +.PHONY : turtlesim_generate_messages_cpp + +# fast build rule for target. +turtlesim_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build +.PHONY : turtlesim_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_cpp: learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +.PHONY : std_msgs_generate_messages_cpp + +# fast build rule for target. +std_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_msgs_generate_messages_cpp.dir/build +.PHONY : std_msgs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_eus: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_eus + +# fast build rule for target. +rosgraph_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build +.PHONY : rosgraph_msgs_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +.PHONY : std_srvs_generate_messages_cpp + +# fast build rule for target. +std_srvs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build +.PHONY : std_srvs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_lisp: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# fast build rule for target. +rosgraph_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build +.PHONY : rosgraph_msgs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +.PHONY : turtlesim_generate_messages_eus + +# fast build rule for target. +turtlesim_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build +.PHONY : turtlesim_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +.PHONY : std_srvs_generate_messages_nodejs + +# fast build rule for target. +std_srvs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build +.PHONY : std_srvs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# fast build rule for target. +rosgraph_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build +.PHONY : rosgraph_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +.PHONY : turtlesim_generate_messages_lisp + +# fast build rule for target. +turtlesim_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build +.PHONY : turtlesim_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +.PHONY : turtlesim_generate_messages_nodejs + +# fast build rule for target. +turtlesim_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build +.PHONY : turtlesim_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +.PHONY : turtlesim_generate_messages_py + +# fast build rule for target. +turtlesim_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build +.PHONY : turtlesim_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_cpp: learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +.PHONY : roscpp_generate_messages_cpp + +# fast build rule for target. +roscpp_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/roscpp_generate_messages_cpp.dir/build +.PHONY : roscpp_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +.PHONY : std_srvs_generate_messages_py + +# fast build rule for target. +std_srvs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build +.PHONY : std_srvs_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +.PHONY : std_srvs_generate_messages_eus + +# fast build rule for target. +std_srvs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build +.PHONY : std_srvs_generate_messages_eus/fast + +# 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 "... roscpp_generate_messages_py" + @echo "... list_install_components" + @echo "... std_msgs_generate_messages_py" + @echo "... std_srvs_generate_messages_lisp" + @echo "... geometry_msgs_generate_messages_eus" + @echo "... roscpp_generate_messages_nodejs" + @echo "... roscpp_generate_messages_eus" + @echo "... std_msgs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_cpp" + @echo "... std_msgs_generate_messages_lisp" + @echo "... std_msgs_generate_messages_eus" + @echo "... rosgraph_msgs_generate_messages_py" + @echo "... roscpp_generate_messages_lisp" + @echo "... geometry_msgs_generate_messages_nodejs" + @echo "... edit_cache" + @echo "... geometry_msgs_generate_messages_cpp" + @echo "... geometry_msgs_generate_messages_lisp" + @echo "... test" + @echo "... geometry_msgs_generate_messages_py" + @echo "... turtlesim_generate_messages_cpp" + @echo "... std_msgs_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_eus" + @echo "... std_srvs_generate_messages_cpp" + @echo "... install" + @echo "... rosgraph_msgs_generate_messages_lisp" + @echo "... turtlesim_generate_messages_eus" + @echo "... std_srvs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_lisp" + @echo "... turtlesim_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_py" + @echo "... roscpp_generate_messages_cpp" + @echo "... rebuild_cache" + @echo "... std_srvs_generate_messages_py" + @echo "... std_srvs_generate_messages_eus" + @echo "... install/local" +.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: + cd /home/hazyparker/project/learn_ros/Basics/ros_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc new file mode 100644 index 0000000000000000000000000000000000000000..90e884bab435660c04b4d249886ed7c34001da2f --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/ros_ws/install + +Name: learning_topic +Description: Description of learning_topic +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a8329c874fac9ce72add4d5c69c90abc1f71a368 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(learning_topic_CONFIG_INCLUDED) + return() +endif() +set(learning_topic_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("FALSE" STREQUAL "TRUE") + set(learning_topic_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic) + set(learning_topic_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/devel) + set(learning_topic_INSTALL_PREFIX "") + set(learning_topic_PREFIX ${learning_topic_DEVEL_PREFIX}) +else() + set(learning_topic_SOURCE_PREFIX "") + set(learning_topic_DEVEL_PREFIX "") + set(learning_topic_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/install) + set(learning_topic_PREFIX ${learning_topic_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'learning_topic' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(learning_topic_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(learning_topic_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${learning_topic_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '\${prefix}/${idir}'. ${_report}") + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT learning_topic_NUM_DUMMY_TARGETS) + set(learning_topic_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR learning_topic_NUM_DUMMY_TARGETS "${learning_topic_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND learning_topic_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/ros_ws/install/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(learning_topic_LIBRARY_DIRS ${lib_path}) + list(APPEND learning_topic_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'learning_topic'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND learning_topic_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(learning_topic_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${learning_topic_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 learning_topic_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${learning_topic_dep}_FOUND) + find_package(${learning_topic_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${learning_topic_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${${learning_topic_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${learning_topic_dep}_LIBRARIES}) + _list_append_deduplicate(learning_topic_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + + _list_append_unique(learning_topic_LIBRARY_DIRS ${${learning_topic_dep}_LIBRARY_DIRS}) + list(APPEND learning_topic_EXPORTED_TARGETS ${${learning_topic_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${learning_topic_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/ordered_paths.cmake b/Basics/ros_ws/build/learning_topic/catkin_generated/ordered_paths.cmake new file mode 100644 index 0000000000000000000000000000000000000000..88ba1d8af01839a303cdb6a7d83aacc7be67e6ab --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/ordered_paths.cmake @@ -0,0 +1 @@ +set(ORDERED_PATHS "/opt/ros/melodic/lib") \ No newline at end of file diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/package.cmake b/Basics/ros_ws/build/learning_topic/catkin_generated/package.cmake new file mode 100644 index 0000000000000000000000000000000000000000..40095a3ad76b3f7ffeddfa9946a1488950a15f0b --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/package.cmake @@ -0,0 +1,16 @@ +set(_CATKIN_CURRENT_PACKAGE "learning_topic") +set(learning_topic_VERSION "0.0.0") +set(learning_topic_MAINTAINER "hazyparker ") +set(learning_topic_PACKAGE_FORMAT "2") +set(learning_topic_BUILD_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_BUILD_EXPORT_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_BUILDTOOL_DEPENDS "catkin") +set(learning_topic_BUILDTOOL_EXPORT_DEPENDS ) +set(learning_topic_EXEC_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_RUN_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_TEST_DEPENDS ) +set(learning_topic_DOC_DEPENDS ) +set(learning_topic_URL_WEBSITE "") +set(learning_topic_URL_BUGTRACKER "") +set(learning_topic_URL_REPOSITORY "") +set(learning_topic_DEPRECATED "") \ No newline at end of file diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py b/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..53d9b464939794d62b12ac0c31d4d35b587b2f6c --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "learning_topic" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/ros_ws/devel" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py b/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..0040c06561ae9a3560f6934b8993c7a86f0f2e1e --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "learning_topic" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/ros_ws/install" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp b/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp new file mode 100644 index 0000000000000000000000000000000000000000..678469c768849af2b4eb89dd3d2f9c3b40db7fe4 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp @@ -0,0 +1,74 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + + + + + + + diff --git a/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp b/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp new file mode 100644 index 0000000000000000000000000000000000000000..549fb75ce8000c875c316f444238bd1f28dc88c8 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp @@ -0,0 +1,8 @@ +prefix=@PROJECT_SPACE_DIR + +Name: @(CATKIN_PACKAGE_PREFIX + PROJECT_NAME) +Description: Description of @PROJECT_NAME +Version: @PROJECT_VERSION +Cflags: @(' '.join(['-I%s' % include for include in PROJECT_PKG_CONFIG_INCLUDE_DIRS])) +Libs: -L${prefix}/lib @(' '.join(PKG_CONFIG_LIBRARIES_WITH_PREFIX)) +Requires: @(PROJECT_CATKIN_DEPENDS) diff --git a/Basics/ros_ws/build/learning_topic/cmake_install.cmake b/Basics/ros_ws/build/learning_topic/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cd1b6113d9e287f234a32d4936125d70ce129dc3 --- /dev/null +++ b/Basics/ros_ws/build/learning_topic/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/ros_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/learning_topic/cmake" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake" + "/home/hazyparker/project/learn_ros/Basics/ros_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/learning_topic" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic/package.xml") +endif() + diff --git a/Basics/ros_ws/devel/.built_by b/Basics/ros_ws/devel/.built_by new file mode 100644 index 0000000000000000000000000000000000000000..2e212dd304b5097120ab9fa2ade549804768ad5f --- /dev/null +++ b/Basics/ros_ws/devel/.built_by @@ -0,0 +1 @@ +catkin_make \ No newline at end of file diff --git a/Basics/ros_ws/devel/.catkin b/Basics/ros_ws/devel/.catkin new file mode 100644 index 0000000000000000000000000000000000000000..ae48ce5217e2a9d5cb49fc35654e8597099204cf --- /dev/null +++ b/Basics/ros_ws/devel/.catkin @@ -0,0 +1 @@ +/home/hazyparker/project/learn_ros/Basics/ros_ws/src \ No newline at end of file diff --git a/Basics/ros_ws/devel/.rosinstall b/Basics/ros_ws/devel/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..5465b95704fd7f24610068399c9f906359b37e4c --- /dev/null +++ b/Basics/ros_ws/devel/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/ros_ws/devel/setup.sh diff --git a/Basics/ros_ws/devel/_setup_util.py b/Basics/ros_ws/devel/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/ros_ws/devel/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/ros_ws/devel/cmake.lock b/Basics/ros_ws/devel/cmake.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/ros_ws/devel/env.sh b/Basics/ros_ws/devel/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/ros_ws/devel/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/ros_ws/devel/lib/pkgconfig/learning_topic.pc b/Basics/ros_ws/devel/lib/pkgconfig/learning_topic.pc new file mode 100644 index 0000000000000000000000000000000000000000..ee9485cb9b9044829f9fbc6d3cfefaace0b94313 --- /dev/null +++ b/Basics/ros_ws/devel/lib/pkgconfig/learning_topic.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel + +Name: learning_topic +Description: Description of learning_topic +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/ros_ws/devel/local_setup.bash b/Basics/ros_ws/devel/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/ros_ws/devel/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/ros_ws/devel/local_setup.sh b/Basics/ros_ws/devel/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..efeb4f61226ddf240d1c8c65b855cd7a15ae03ee --- /dev/null +++ b/Basics/ros_ws/devel/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/ros_ws/devel/local_setup.zsh b/Basics/ros_ws/devel/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/ros_ws/devel/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/ros_ws/devel/setup.bash b/Basics/ros_ws/devel/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/ros_ws/devel/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/ros_ws/devel/setup.sh b/Basics/ros_ws/devel/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..e26742d4b60307d3b22b2e1cd0fc50a83b0e9ff6 --- /dev/null +++ b/Basics/ros_ws/devel/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/devel} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/ros_ws/devel/setup.zsh b/Basics/ros_ws/devel/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/ros_ws/devel/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake b/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake b/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5a8e9394a7d24bfc630d0ac9b100f920b10c5757 --- /dev/null +++ b/Basics/ros_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(learning_topic_CONFIG_INCLUDED) + return() +endif() +set(learning_topic_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("TRUE" STREQUAL "TRUE") + set(learning_topic_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic) + set(learning_topic_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/devel) + set(learning_topic_INSTALL_PREFIX "") + set(learning_topic_PREFIX ${learning_topic_DEVEL_PREFIX}) +else() + set(learning_topic_SOURCE_PREFIX "") + set(learning_topic_DEVEL_PREFIX "") + set(learning_topic_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/ros_ws/install) + set(learning_topic_PREFIX ${learning_topic_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'learning_topic' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(learning_topic_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(learning_topic_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${learning_topic_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '/home/hazyparker/project/learn_ros/Basics/ros_ws/src/learning_topic/${idir}'. ${_report}") + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT learning_topic_NUM_DUMMY_TARGETS) + set(learning_topic_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR learning_topic_NUM_DUMMY_TARGETS "${learning_topic_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND learning_topic_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/ros_ws/devel/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(learning_topic_LIBRARY_DIRS ${lib_path}) + list(APPEND learning_topic_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'learning_topic'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND learning_topic_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(learning_topic_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${learning_topic_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 learning_topic_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${learning_topic_dep}_FOUND) + find_package(${learning_topic_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${learning_topic_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${${learning_topic_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${learning_topic_dep}_LIBRARIES}) + _list_append_deduplicate(learning_topic_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + + _list_append_unique(learning_topic_LIBRARY_DIRS ${${learning_topic_dep}_LIBRARY_DIRS}) + list(APPEND learning_topic_EXPORTED_TARGETS ${${learning_topic_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${learning_topic_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/ros_ws/install/.catkin b/Basics/ros_ws/install/.catkin new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/ros_ws/install/.rosinstall b/Basics/ros_ws/install/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..0b34d1dd7cf0746ad17abf957afd728db4a79a98 --- /dev/null +++ b/Basics/ros_ws/install/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/ros_ws/install/setup.sh diff --git a/Basics/ros_ws/install/_setup_util.py b/Basics/ros_ws/install/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/ros_ws/install/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/ros_ws/install/env.sh b/Basics/ros_ws/install/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/ros_ws/install/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/ros_ws/install/local_setup.bash b/Basics/ros_ws/install/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/ros_ws/install/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/ros_ws/install/local_setup.sh b/Basics/ros_ws/install/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..a3a31d4d66078dbf9db5758da4ac9738e8a63d45 --- /dev/null +++ b/Basics/ros_ws/install/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/install} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/ros_ws/install/local_setup.zsh b/Basics/ros_ws/install/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/ros_ws/install/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/ros_ws/install/setup.bash b/Basics/ros_ws/install/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/ros_ws/install/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/ros_ws/install/setup.sh b/Basics/ros_ws/install/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..6445bd946fb373c2d07146f5218eb74f26697bab --- /dev/null +++ b/Basics/ros_ws/install/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/ros_ws/install} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/ros_ws/install/setup.zsh b/Basics/ros_ws/install/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/ros_ws/install/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/ros_ws/src/.idea/.gitignore b/Basics/ros_ws/src/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/Basics/ros_ws/src/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Basics/ros_ws/src/.idea/misc.xml b/Basics/ros_ws/src/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..79b3c94830bab93d40d0770f2765540fe24ed423 --- /dev/null +++ b/Basics/ros_ws/src/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/.idea/modules.xml b/Basics/ros_ws/src/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..f669a0e5940d09242eeb8ff9d3cc4ff10de98b50 --- /dev/null +++ b/Basics/ros_ws/src/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/.idea/src.iml b/Basics/ros_ws/src/.idea/src.iml new file mode 100644 index 0000000000000000000000000000000000000000..f08604bb65b25149b195f9e9f282f9683a428592 --- /dev/null +++ b/Basics/ros_ws/src/.idea/src.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Basics/ros_ws/src/.idea/vcs.xml b/Basics/ros_ws/src/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..c2365ab11f9ba6b763735c8fd976420234bb3521 --- /dev/null +++ b/Basics/ros_ws/src/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/CMakeLists.txt b/Basics/ros_ws/src/CMakeLists.txt new file mode 120000 index 0000000000000000000000000000000000000000..66dd650aca8bc895ebfd0001a46559de60baee2c --- /dev/null +++ b/Basics/ros_ws/src/CMakeLists.txt @@ -0,0 +1 @@ +/opt/ros/melodic/share/catkin/cmake/toplevel.cmake \ No newline at end of file diff --git a/Basics/ros_ws/src/learning_topic/.idea/.gitignore b/Basics/ros_ws/src/learning_topic/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Basics/ros_ws/src/learning_topic/.idea/learning_topic.iml b/Basics/ros_ws/src/learning_topic/.idea/learning_topic.iml new file mode 100644 index 0000000000000000000000000000000000000000..f08604bb65b25149b195f9e9f282f9683a428592 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/.idea/learning_topic.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Basics/ros_ws/src/learning_topic/.idea/misc.xml b/Basics/ros_ws/src/learning_topic/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..79b3c94830bab93d40d0770f2765540fe24ed423 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/learning_topic/.idea/modules.xml b/Basics/ros_ws/src/learning_topic/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..c9b769b477d69aa3e957228a4d652066bf30c3d7 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/learning_topic/.idea/vcs.xml b/Basics/ros_ws/src/learning_topic/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..4fce1d86b49521afe1cee4ed1c13b6396ebbc6f3 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Basics/ros_ws/src/learning_topic/CMakeLists.txt b/Basics/ros_ws/src/learning_topic/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..af874161ced884a6542806d98d94934e9b45acf9 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/CMakeLists.txt @@ -0,0 +1,208 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_topic) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic +# CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_topic.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_topic_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_topic.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/ros_ws/src/learning_topic/package.xml b/Basics/ros_ws/src/learning_topic/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..678469c768849af2b4eb89dd3d2f9c3b40db7fe4 --- /dev/null +++ b/Basics/ros_ws/src/learning_topic/package.xml @@ -0,0 +1,74 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + + + + + + + diff --git a/Basics/test2_ws/devel/include/learning_service/person.h b/Basics/test2_ws/devel/include/learning_service/person.h new file mode 100644 index 0000000000000000000000000000000000000000..a96a5970f0757272459f4919b6f606b0f1ed04e9 --- /dev/null +++ b/Basics/test2_ws/devel/include/learning_service/person.h @@ -0,0 +1,123 @@ +// Generated by gencpp from file learning_service/person.msg +// DO NOT EDIT! + + +#ifndef LEARNING_SERVICE_MESSAGE_PERSON_H +#define LEARNING_SERVICE_MESSAGE_PERSON_H + +#include + + +#include +#include + + +namespace learning_service +{ + +struct person +{ + +typedef personRequest Request; +typedef personResponse Response; +Request request; +Response response; + +typedef Request RequestType; +typedef Response ResponseType; + +}; // struct person +} // namespace learning_service + + +namespace ros +{ +namespace service_traits +{ + + +template<> +struct MD5Sum< ::learning_service::person > { + static const char* value() + { + return "c198113e7dd9cc5c9fd5f271c8479b39"; + } + + static const char* value(const ::learning_service::person&) { return value(); } +}; + +template<> +struct DataType< ::learning_service::person > { + static const char* value() + { + return "learning_service/person"; + } + + static const char* value(const ::learning_service::person&) { return value(); } +}; + + +// service_traits::MD5Sum< ::learning_service::personRequest> should match +// service_traits::MD5Sum< ::learning_service::person > +template<> +struct MD5Sum< ::learning_service::personRequest> +{ + static const char* value() + { + return MD5Sum< ::learning_service::person >::value(); + } + static const char* value(const ::learning_service::personRequest&) + { + return value(); + } +}; + +// service_traits::DataType< ::learning_service::personRequest> should match +// service_traits::DataType< ::learning_service::person > +template<> +struct DataType< ::learning_service::personRequest> +{ + static const char* value() + { + return DataType< ::learning_service::person >::value(); + } + static const char* value(const ::learning_service::personRequest&) + { + return value(); + } +}; + +// service_traits::MD5Sum< ::learning_service::personResponse> should match +// service_traits::MD5Sum< ::learning_service::person > +template<> +struct MD5Sum< ::learning_service::personResponse> +{ + static const char* value() + { + return MD5Sum< ::learning_service::person >::value(); + } + static const char* value(const ::learning_service::personResponse&) + { + return value(); + } +}; + +// service_traits::DataType< ::learning_service::personResponse> should match +// service_traits::DataType< ::learning_service::person > +template<> +struct DataType< ::learning_service::personResponse> +{ + static const char* value() + { + return DataType< ::learning_service::person >::value(); + } + static const char* value(const ::learning_service::personResponse&) + { + return value(); + } +}; + +} // namespace service_traits +} // namespace ros + +#endif // LEARNING_SERVICE_MESSAGE_PERSON_H diff --git a/Basics/test2_ws/devel/include/learning_service/personRequest.h b/Basics/test2_ws/devel/include/learning_service/personRequest.h new file mode 100644 index 0000000000000000000000000000000000000000..ca722c0312f404381a47a7e8cc04406ee64998c6 --- /dev/null +++ b/Basics/test2_ws/devel/include/learning_service/personRequest.h @@ -0,0 +1,241 @@ +// Generated by gencpp from file learning_service/personRequest.msg +// DO NOT EDIT! + + +#ifndef LEARNING_SERVICE_MESSAGE_PERSONREQUEST_H +#define LEARNING_SERVICE_MESSAGE_PERSONREQUEST_H + + +#include +#include +#include + +#include +#include +#include +#include + + +namespace learning_service +{ +template +struct personRequest_ +{ + typedef personRequest_ Type; + + personRequest_() + : name() + , age(0) + , sex(0) { + } + personRequest_(const ContainerAllocator& _alloc) + : name(_alloc) + , age(0) + , sex(0) { + (void)_alloc; + } + + + + typedef std::basic_string, typename ContainerAllocator::template rebind::other > _name_type; + _name_type name; + + typedef uint8_t _age_type; + _age_type age; + + typedef uint8_t _sex_type; + _sex_type sex; + + + +// reducing the odds to have name collisions with Windows.h +#if defined(_WIN32) && defined(unknown) + #undef unknown +#endif +#if defined(_WIN32) && defined(male) + #undef male +#endif +#if defined(_WIN32) && defined(female) + #undef female +#endif + + enum { + unknown = 0u, + male = 1u, + female = 2u, + }; + + + typedef boost::shared_ptr< ::learning_service::personRequest_ > Ptr; + typedef boost::shared_ptr< ::learning_service::personRequest_ const> ConstPtr; + +}; // struct personRequest_ + +typedef ::learning_service::personRequest_ > personRequest; + +typedef boost::shared_ptr< ::learning_service::personRequest > personRequestPtr; +typedef boost::shared_ptr< ::learning_service::personRequest const> personRequestConstPtr; + +// constants requiring out of line definition + + + + + + + + + +template +std::ostream& operator<<(std::ostream& s, const ::learning_service::personRequest_ & v) +{ +ros::message_operations::Printer< ::learning_service::personRequest_ >::stream(s, "", v); +return s; +} + + +template +bool operator==(const ::learning_service::personRequest_ & lhs, const ::learning_service::personRequest_ & rhs) +{ + return lhs.name == rhs.name && + lhs.age == rhs.age && + lhs.sex == rhs.sex; +} + +template +bool operator!=(const ::learning_service::personRequest_ & lhs, const ::learning_service::personRequest_ & rhs) +{ + return !(lhs == rhs); +} + + +} // namespace learning_service + +namespace ros +{ +namespace message_traits +{ + + + + + +template +struct IsFixedSize< ::learning_service::personRequest_ > + : FalseType + { }; + +template +struct IsFixedSize< ::learning_service::personRequest_ const> + : FalseType + { }; + +template +struct IsMessage< ::learning_service::personRequest_ > + : TrueType + { }; + +template +struct IsMessage< ::learning_service::personRequest_ const> + : TrueType + { }; + +template +struct HasHeader< ::learning_service::personRequest_ > + : FalseType + { }; + +template +struct HasHeader< ::learning_service::personRequest_ const> + : FalseType + { }; + + +template +struct MD5Sum< ::learning_service::personRequest_ > +{ + static const char* value() + { + return "b3f7ec37d11629ec3010e27635cf22a9"; + } + + static const char* value(const ::learning_service::personRequest_&) { return value(); } + static const uint64_t static_value1 = 0xb3f7ec37d11629ecULL; + static const uint64_t static_value2 = 0x3010e27635cf22a9ULL; +}; + +template +struct DataType< ::learning_service::personRequest_ > +{ + static const char* value() + { + return "learning_service/personRequest"; + } + + static const char* value(const ::learning_service::personRequest_&) { return value(); } +}; + +template +struct Definition< ::learning_service::personRequest_ > +{ + static const char* value() + { + return "string name\n" +"uint8 age\n" +"uint8 sex\n" +"\n" +"uint8 unknown = 0\n" +"uint8 male = 1\n" +"uint8 female = 2\n" +; + } + + static const char* value(const ::learning_service::personRequest_&) { return value(); } +}; + +} // namespace message_traits +} // namespace ros + +namespace ros +{ +namespace serialization +{ + + template struct Serializer< ::learning_service::personRequest_ > + { + template inline static void allInOne(Stream& stream, T m) + { + stream.next(m.name); + stream.next(m.age); + stream.next(m.sex); + } + + ROS_DECLARE_ALLINONE_SERIALIZER + }; // struct personRequest_ + +} // namespace serialization +} // namespace ros + +namespace ros +{ +namespace message_operations +{ + +template +struct Printer< ::learning_service::personRequest_ > +{ + template static void stream(Stream& s, const std::string& indent, const ::learning_service::personRequest_& v) + { + s << indent << "name: "; + Printer, typename ContainerAllocator::template rebind::other > >::stream(s, indent + " ", v.name); + s << indent << "age: "; + Printer::stream(s, indent + " ", v.age); + s << indent << "sex: "; + Printer::stream(s, indent + " ", v.sex); + } +}; + +} // namespace message_operations +} // namespace ros + +#endif // LEARNING_SERVICE_MESSAGE_PERSONREQUEST_H diff --git a/Basics/test2_ws/devel/include/learning_service/personResponse.h b/Basics/test2_ws/devel/include/learning_service/personResponse.h new file mode 100644 index 0000000000000000000000000000000000000000..fbe5095530bfe546a5403fa2728066c3edb7b279 --- /dev/null +++ b/Basics/test2_ws/devel/include/learning_service/personResponse.h @@ -0,0 +1,195 @@ +// Generated by gencpp from file learning_service/personResponse.msg +// DO NOT EDIT! + + +#ifndef LEARNING_SERVICE_MESSAGE_PERSONRESPONSE_H +#define LEARNING_SERVICE_MESSAGE_PERSONRESPONSE_H + + +#include +#include +#include + +#include +#include +#include +#include + + +namespace learning_service +{ +template +struct personResponse_ +{ + typedef personResponse_ Type; + + personResponse_() + : result() { + } + personResponse_(const ContainerAllocator& _alloc) + : result(_alloc) { + (void)_alloc; + } + + + + typedef std::basic_string, typename ContainerAllocator::template rebind::other > _result_type; + _result_type result; + + + + + + typedef boost::shared_ptr< ::learning_service::personResponse_ > Ptr; + typedef boost::shared_ptr< ::learning_service::personResponse_ const> ConstPtr; + +}; // struct personResponse_ + +typedef ::learning_service::personResponse_ > personResponse; + +typedef boost::shared_ptr< ::learning_service::personResponse > personResponsePtr; +typedef boost::shared_ptr< ::learning_service::personResponse const> personResponseConstPtr; + +// constants requiring out of line definition + + + +template +std::ostream& operator<<(std::ostream& s, const ::learning_service::personResponse_ & v) +{ +ros::message_operations::Printer< ::learning_service::personResponse_ >::stream(s, "", v); +return s; +} + + +template +bool operator==(const ::learning_service::personResponse_ & lhs, const ::learning_service::personResponse_ & rhs) +{ + return lhs.result == rhs.result; +} + +template +bool operator!=(const ::learning_service::personResponse_ & lhs, const ::learning_service::personResponse_ & rhs) +{ + return !(lhs == rhs); +} + + +} // namespace learning_service + +namespace ros +{ +namespace message_traits +{ + + + + + +template +struct IsFixedSize< ::learning_service::personResponse_ > + : FalseType + { }; + +template +struct IsFixedSize< ::learning_service::personResponse_ const> + : FalseType + { }; + +template +struct IsMessage< ::learning_service::personResponse_ > + : TrueType + { }; + +template +struct IsMessage< ::learning_service::personResponse_ const> + : TrueType + { }; + +template +struct HasHeader< ::learning_service::personResponse_ > + : FalseType + { }; + +template +struct HasHeader< ::learning_service::personResponse_ const> + : FalseType + { }; + + +template +struct MD5Sum< ::learning_service::personResponse_ > +{ + static const char* value() + { + return "c22f2a1ed8654a0b365f1bb3f7ff2c0f"; + } + + static const char* value(const ::learning_service::personResponse_&) { return value(); } + static const uint64_t static_value1 = 0xc22f2a1ed8654a0bULL; + static const uint64_t static_value2 = 0x365f1bb3f7ff2c0fULL; +}; + +template +struct DataType< ::learning_service::personResponse_ > +{ + static const char* value() + { + return "learning_service/personResponse"; + } + + static const char* value(const ::learning_service::personResponse_&) { return value(); } +}; + +template +struct Definition< ::learning_service::personResponse_ > +{ + static const char* value() + { + return "string result\n" +; + } + + static const char* value(const ::learning_service::personResponse_&) { return value(); } +}; + +} // namespace message_traits +} // namespace ros + +namespace ros +{ +namespace serialization +{ + + template struct Serializer< ::learning_service::personResponse_ > + { + template inline static void allInOne(Stream& stream, T m) + { + stream.next(m.result); + } + + ROS_DECLARE_ALLINONE_SERIALIZER + }; // struct personResponse_ + +} // namespace serialization +} // namespace ros + +namespace ros +{ +namespace message_operations +{ + +template +struct Printer< ::learning_service::personResponse_ > +{ + template static void stream(Stream& s, const std::string& indent, const ::learning_service::personResponse_& v) + { + s << indent << "result: "; + Printer, typename ContainerAllocator::template rebind::other > >::stream(s, indent + " ", v.result); + } +}; + +} // namespace message_operations +} // namespace ros + +#endif // LEARNING_SERVICE_MESSAGE_PERSONRESPONSE_H diff --git a/Basics/test2_ws/src/learning_launch/CMakeLists.txt b/Basics/test2_ws/src/learning_launch/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3a52043fd4c33c725deec6eb0359450473a5ffd --- /dev/null +++ b/Basics/test2_ws/src/learning_launch/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_launch) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_launch +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_launch.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_launch_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_launch.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test2_ws/src/learning_launch/config/param.yaml b/Basics/test2_ws/src/learning_launch/config/param.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cb382633cfbc92dab21133e79ee8c8fe87d35f93 --- /dev/null +++ b/Basics/test2_ws/src/learning_launch/config/param.yaml @@ -0,0 +1,6 @@ +A: 123 +B: "hello" + +group: + C: 456 + D: "hello?" diff --git a/Basics/test2_ws/src/learning_launch/launch/simple.launch b/Basics/test2_ws/src/learning_launch/launch/simple.launch new file mode 100644 index 0000000000000000000000000000000000000000..c7cd9e7014c7e01f052410423def77626e5e2e01 --- /dev/null +++ b/Basics/test2_ws/src/learning_launch/launch/simple.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Basics/test2_ws/src/learning_launch/launch/turtlesim_parameter_config.launch b/Basics/test2_ws/src/learning_launch/launch/turtlesim_parameter_config.launch new file mode 100644 index 0000000000000000000000000000000000000000..2c81e34f6b006f0a84d4e85bec9a4759ae0207d8 --- /dev/null +++ b/Basics/test2_ws/src/learning_launch/launch/turtlesim_parameter_config.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Basics/test2_ws/src/learning_launch/package.xml b/Basics/test2_ws/src/learning_launch/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..b97222d86777ab6641d574e495e48b53b5522a27 --- /dev/null +++ b/Basics/test2_ws/src/learning_launch/package.xml @@ -0,0 +1,59 @@ + + + learning_launch + 0.0.0 + The learning_launch package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Basics/test2_ws/src/learning_parameter/CMakeLists.txt b/Basics/test2_ws/src/learning_parameter/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f90b3545c1a4aae73ed86ca7df1556b3c8d9586 --- /dev/null +++ b/Basics/test2_ws/src/learning_parameter/CMakeLists.txt @@ -0,0 +1,209 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_parameter) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_srvs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_parameter +# CATKIN_DEPENDS roscpp rospy std_srvs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_parameter.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_parameter_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(parameter_config src/parameter_config.cpp) +target_link_libraries(parameter_config ${catkin_LIBRARIES}) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_parameter.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test2_ws/src/learning_parameter/package.xml b/Basics/test2_ws/src/learning_parameter/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..905a167b2c7eb8dbdaeaf23372177d3f0d0247a2 --- /dev/null +++ b/Basics/test2_ws/src/learning_parameter/package.xml @@ -0,0 +1,68 @@ + + + learning_parameter + 0.0.0 + The learning_parameter package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_srvs + roscpp + rospy + std_srvs + roscpp + rospy + std_srvs + + + + + + + + diff --git a/Basics/test2_ws/src/learning_parameter/src/parameter_config.cpp b/Basics/test2_ws/src/learning_parameter/src/parameter_config.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b96dd7e6be0c6c7bc78061ed300183535f83383b --- /dev/null +++ b/Basics/test2_ws/src/learning_parameter/src/parameter_config.cpp @@ -0,0 +1,49 @@ +// +// Created by hazyparker on 2022/1/8. +// set/get parameters in turtle node + +#include +#include +#include + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "parameter_config"); + + // create node handle + ros::NodeHandle n; + + // get background RGB param + int red = 0, green = 0, blue = 0; + ros::param::get("/turtlesim/background_r", red); + ros::param::get("/turtlesim/background_g", green); + ros::param::get("/turtlesim/background_b", blue); + + ROS_INFO("get param, background color in RGB [%d, %d, %d]", red, green, blue); + + // set background RGB param + // set all params equal 255, namely white background + ros::param::set("/turtlesim/background_r", 255); + ros::param::set("/turtlesim/background_g", 255); + ros::param::set("/turtlesim/background_b", 255); + + ROS_INFO("new background color set!"); + + // get params again to see changes + ros::param::get("/turtlesim/background_r", red); + ros::param::get("/turtlesim/background_g", green); + ros::param::get("/turtlesim/background_b", blue); + + ROS_INFO("get param, background color in RGB [%d, %d, %d]", red, green, blue); + + // call service to refresh background color + ros::service::waitForService("/clear"); + ros::ServiceClient clear_background = n.serviceClient("/clear"); + std_srvs::Empty srv; + clear_background.call(srv); + + sleep(1); + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_service/CMakeLists.txt b/Basics/test2_ws/src/learning_service/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ee61f22902beafcd083f87534c9969179bdea6 --- /dev/null +++ b/Basics/test2_ws/src/learning_service/CMakeLists.txt @@ -0,0 +1,233 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_service) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +add_service_files( + FILES Person.srv + FILES person.srv +) + +generate_messages( + DEPENDENCIES std_msgs +) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_service + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_service.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_service_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(turtle_spawn src/turtle_spawn.cpp) +target_link_libraries(turtle_spawn ${catkin_LIBRARIES}) + +add_executable(turtle_command_server src/turtle_command_server.cpp) +target_link_libraries(turtle_command_server ${catkin_LIBRARIES}) + +add_executable(person_client src/person_client.cpp) +target_link_libraries(person_client ${catkin_LIBRARIES}) +add_dependencies(person_client ${PROJECT_NAME}_gencpp) + +add_executable(person_server src/person_server.cpp) +target_link_libraries(person_server ${catkin_LIBRARIES}) +add_dependencies(person_server ${PROJECT_NAME}_gencpp) + + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_service.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test2_ws/src/learning_service/package.xml b/Basics/test2_ws/src/learning_service/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c8f54ea1b9a83a05c5d0ee0de299c1b64103319 --- /dev/null +++ b/Basics/test2_ws/src/learning_service/package.xml @@ -0,0 +1,77 @@ + + + learning_service + 0.0.0 + The learning_service package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + message_generation + message_runtime + + + + + + + + diff --git a/Basics/test2_ws/src/learning_service/src/person_client.cpp b/Basics/test2_ws/src/learning_service/src/person_client.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9676e1dab1bd2857fad954eb94dc9419cad797c3 --- /dev/null +++ b/Basics/test2_ws/src/learning_service/src/person_client.cpp @@ -0,0 +1,37 @@ +// +// Created by hazyparker on 2022/1/7. +// request service /show_person, type defined as learning_service::Person + +#include +#include "learning_service/Person.h" + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "person_client"); + + // create ros node + ros::NodeHandle n; + + // wait for service "/show_person" + // then create a new client, connect it + ros::service::waitForService("/show_person"); + ros::ServiceClient person_client = n.serviceClient("/show_person"); + + // init request data of learning_service::Person + learning_service::Person srv; + srv.request.name = "Tom"; + srv.request.age = 20; + srv.request.sex = learning_service::Person::Request::male; + + // call request + ROS_INFO("Call service to show person[name:%s, age:%d, sex:%d]", + srv.request.name.c_str(), srv.request.age, srv.request.sex); + person_client.call(srv); + + // show calling result + ROS_INFO("show person result: %s", srv.response.result.c_str()); + + return 0; +} + + diff --git a/Basics/test2_ws/src/learning_service/src/person_server.cpp b/Basics/test2_ws/src/learning_service/src/person_server.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e6cc9436094eb970a2279bec718824ccc40bcb4f --- /dev/null +++ b/Basics/test2_ws/src/learning_service/src/person_server.cpp @@ -0,0 +1,35 @@ +// +// Created by hazyparker on 2022/1/7. +// + +#include +#include "learning_service/Person.h" + +bool personCallback(learning_service::Person::Request &req, + learning_service::Person::Response &res){ + // show request data + ROS_INFO("Person: name:%s age:%d sex:%d", req.name.c_str(), req.age, req.sex); + + // set feedback data + res.result = "data flow succeed!"; + + return true; +} + +int main(int argc, char **argv){ + // ros node init + ros::init(argc, argv, "person_server"); + + // create ros node + ros::NodeHandle n; + + // create a server named "/show_person" + // define callback function personCallback + ros::ServiceServer person_service = n.advertiseService("/show_person", personCallback); + + // loop, waiting for callback function + ROS_INFO("ready to show person information"); + ros::spin(); + + return 0; +} diff --git a/Basics/test2_ws/src/learning_service/src/turtle_command_server.cpp b/Basics/test2_ws/src/learning_service/src/turtle_command_server.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c6a2d9476eacdb2cc67496e1969ea8a70bd572d3 --- /dev/null +++ b/Basics/test2_ws/src/learning_service/src/turtle_command_server.cpp @@ -0,0 +1,64 @@ +// +// Created by hazyparker on 2022/1/7. +// run /turtle_command service, type defined as std_srvs/Trigger + +#include +#include +#include + +ros::Publisher turtle_vel_pub; +bool pubCommand = false; + +bool commandCallback(std_srvs::Trigger::Request &req, + std_srvs::Trigger::Response &res){ + // use as flag + pubCommand = !pubCommand; + + // show request data + ROS_INFO("publish turtle velocity command [%s]", pubCommand == true? "yes":"no"); + + // set feedback data + res.success = true; + res.message = "Changed turtle command state..."; + + return true; +} + +int main(int argc, char **argv){ + // ros node init + ros::init(argc, argv, "turtle_command_server"); + + // create ros handle + ros::NodeHandle n; + + // create a server named /turtle_command + // define callback function "commandCallback" + ros::ServiceServer command_service = n.advertiseService("/turtle_command", commandCallback); + + // create a publisher + // publish topic named /turtle1/cmd_vel + // message type defined as geometry_msgs::Twist + turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // loop, waiting for callback function + ROS_INFO("ready to receive turtle command"); + ros::Rate loop_rate(10); + + while(ros::ok()){ + // check callback queue for new message + ros::spinOnce(); + + // if pubCommand = true + if(pubCommand){ + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + turtle_vel_pub.publish(vel_msg); + } + + // set loop frequency + loop_rate.sleep(); + } + + return 0; +} diff --git a/Basics/test2_ws/src/learning_service/src/turtle_spawn.cpp b/Basics/test2_ws/src/learning_service/src/turtle_spawn.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a0b14b8c9b73e81d92dc28ff60fcdacdf6e0988a --- /dev/null +++ b/Basics/test2_ws/src/learning_service/src/turtle_spawn.cpp @@ -0,0 +1,36 @@ +// +// Created by hazyparker on 2022/1/3. +// request /spawn service, type as turtle sim::Spawn + +#include +#include + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "turtle_spawn"); + + // create node handle + ros::NodeHandle n; + + // wait until service /spawn is founded + ros::service::waitForService("/spawn"); + // create a client, connecting to service /spawn + ros::ServiceClient add_turtle = n.serviceClient("/spawn"); + + // init request data + turtlesim::Spawn srv; + srv.request.x = 2.0; + srv.request.y = 2.0; + srv.request.name = "turtle2"; + + // call request service + ROS_INFO("call service to spawn turtle[x:%0.6f, y:%0.6f, name:%s]", + srv.request.x, srv.request.y, srv.request.name.c_str()); + add_turtle.call(srv); + + // show result of calling service + ROS_INFO("Spawn turtle successfully [name:%s]", srv.response.name.c_str()); + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_service/srv/Person.srv b/Basics/test2_ws/src/learning_service/srv/Person.srv new file mode 100644 index 0000000000000000000000000000000000000000..06c18261bed1932735a7dfc18fc58441b404c9e7 --- /dev/null +++ b/Basics/test2_ws/src/learning_service/srv/Person.srv @@ -0,0 +1,9 @@ +string name +uint8 age +uint8 sex + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 +--- +string result diff --git a/Basics/test2_ws/src/learning_service/srv/person.srv b/Basics/test2_ws/src/learning_service/srv/person.srv new file mode 100644 index 0000000000000000000000000000000000000000..6a4fa164e80341651ee07f06b03f501013ad95ae --- /dev/null +++ b/Basics/test2_ws/src/learning_service/srv/person.srv @@ -0,0 +1,9 @@ +string name +uint8 age +uint8 sex + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 +--- +string result \ No newline at end of file diff --git a/Basics/test2_ws/src/learning_tf/CMakeLists.txt b/Basics/test2_ws/src/learning_tf/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..31ecd079264840eb8781e7529f37affba3c7a30b --- /dev/null +++ b/Basics/test2_ws/src/learning_tf/CMakeLists.txt @@ -0,0 +1,213 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_tf) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + tf + turtlesim +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_tf +# CATKIN_DEPENDS roscpp rospy tf turtlesim +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_tf.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_tf_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(turtle_tf_broadcaster src/turtle_tf_broadcaster.cpp) +target_link_libraries(turtle_tf_broadcaster ${catkin_LIBRARIES}) + +add_executable(turtle_tf_listener src/turtle_tf_listener.cpp) +target_link_libraries(turtle_tf_listener ${catkin_LIBRARIES}) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_tf.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test2_ws/src/learning_tf/package.xml b/Basics/test2_ws/src/learning_tf/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..d8843783a836bf05ed0eb92d9d967bba7b442a4f --- /dev/null +++ b/Basics/test2_ws/src/learning_tf/package.xml @@ -0,0 +1,71 @@ + + + learning_tf + 0.0.0 + The learning_tf package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + tf + turtlesim + roscpp + rospy + tf + turtlesim + roscpp + rospy + tf + turtlesim + + + + + + + + diff --git a/Basics/test2_ws/src/learning_tf/src/turtle_tf_broadcaster.cpp b/Basics/test2_ws/src/learning_tf/src/turtle_tf_broadcaster.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ad75826f7e071c5f5b914d4ac9551f0ea48bd5b8 --- /dev/null +++ b/Basics/test2_ws/src/learning_tf/src/turtle_tf_broadcaster.cpp @@ -0,0 +1,48 @@ +// +// Created by hazyparker on 2022/1/8. +// create tf data, send cmd of turtle2 + +#include +#include +#include + +std::string turtle_name; + +void poseCallback(const turtlesim::PoseConstPtr &msg){ + // create tf broadcaster + static tf::TransformBroadcaster br; + + // init tf data + tf::Transform transform; + transform.setOrigin(tf::Vector3(msg->x, msg->y, 0.0)); + tf::Quaternion q; + q.setRPY(0, 0, msg->theta); + transform.setRotation(q); + + // broadcast tf data between world and turtle(store in transform) + // describe axis relationship of world and turtle_name + // from now to next 10 seconds + br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), "world", turtle_name)); +} + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "my_tf_broadcaster"); + + // use input param as turtle name + if(argc != 2){ + ROS_ERROR("need turtle name as argument"); + return -1; + } + turtle_name = argv[1]; + + // subscribe Pose topic + ros::NodeHandle n; + ros::Subscriber sub = n.subscribe(turtle_name+"/pose", 10, poseCallback); + + // loop, waiting for callback function + ros::spin(); + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_tf/src/turtle_tf_listener.cpp b/Basics/test2_ws/src/learning_tf/src/turtle_tf_listener.cpp new file mode 100644 index 0000000000000000000000000000000000000000..1b6e6e384df14e71f3fe204c4055e530f26339ab --- /dev/null +++ b/Basics/test2_ws/src/learning_tf/src/turtle_tf_listener.cpp @@ -0,0 +1,57 @@ +// +// Created by hazyparker on 2022/1/8. +// listener of tf data + +#include +#include +#include +#include + + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "my_tf_listener"); + + // create ros node + ros::NodeHandle n; + + // create turtle2 + ros::service::waitForService("/spawn"); + ros::ServiceClient add_turtle = n.serviceClient("/spawn"); + turtlesim::Spawn srv; + add_turtle.call(srv); + + // create publisher + ros::Publisher turtle_vel = n.advertise("/turtle2/cmd_vel", 10); + + // create tf listener + tf::TransformListener transformListener; + + ros::Rate loop_rate(10.0); + while(n.ok()){ + // get tf data between turtle1 and turtle2 + tf::StampedTransform transform; + try{ + transformListener.waitForTransform("/turtle2", "/turtle1", ros::Time(0), ros::Duration(3.0)); + transformListener.lookupTransform("/turtle2", "/turtle1", ros::Time(0), transform); + } + catch(tf::TransformException &exception){ + ROS_ERROR("%s", exception.what()); + ros::Duration(1.0).sleep(); + continue; + } + + // publish cmd_vel of turtle2 to catch up with turtle1 + // a simple P(proportion) control + geometry_msgs::Twist vel_msg; + vel_msg.angular.z = 4.0 * atan2(transform.getOrigin().y(), transform.getOrigin().x()); + vel_msg.linear.x = 0.5 * sqrt(pow(transform.getOrigin().x(), 2) + + pow(transform.getOrigin().y(), 2)); + turtle_vel.publish(vel_msg); + + loop_rate.sleep(); + } + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_topic/CMakeLists.txt b/Basics/test2_ws/src/learning_topic/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..34c8da705d159f5d19b9a48dbf74b70c10706190 --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/CMakeLists.txt @@ -0,0 +1,231 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_topic) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +add_message_files( + FILES Person.msg +) + +generate_messages( + DEPENDENCIES std_msgs +) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_topic.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_topic_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) +add_executable(velocity_publisher src/velocity_publisher.cpp) +target_link_libraries(velocity_publisher ${catkin_LIBRARIES}) + +add_executable(pose_subscriber src/pose_subscriber.cpp) +target_link_libraries(pose_subscriber ${catkin_LIBRARIES}) + +add_executable(person_publisher src/person_publisher.cpp) +target_link_libraries(person_publisher ${catkin_LIBRARIES}) +add_dependencies(person_publisher ${PROJECT_NAME}_generate_messages_cpp) + +add_executable(person_subscriber src/person_subscriber.cpp) +target_link_libraries(person_subscriber ${catkin_LIBRARIES}) +add_dependencies(person_subscriber ${PROJECT_NAME}_generate_messages_cpp) + + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_topic.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test2_ws/src/learning_topic/msg/Person.msg b/Basics/test2_ws/src/learning_topic/msg/Person.msg new file mode 100644 index 0000000000000000000000000000000000000000..9e8a732d26266b3371c202be2f59934518181a0f --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/msg/Person.msg @@ -0,0 +1,7 @@ +string name +uint8 sex +uint8 age + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 diff --git a/Basics/test2_ws/src/learning_topic/package.xml b/Basics/test2_ws/src/learning_topic/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..47d2fc9c58769b5ec5c4ee862f9b3872cdb45ac5 --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/package.xml @@ -0,0 +1,76 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation + message_runtime + + + + + + + + diff --git a/Basics/test2_ws/src/learning_topic/src/person_publisher.cpp b/Basics/test2_ws/src/learning_topic/src/person_publisher.cpp new file mode 100644 index 0000000000000000000000000000000000000000..818fefde41f2be902af6fd400fdccb0b8177ecb3 --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/src/person_publisher.cpp @@ -0,0 +1,44 @@ +// +// Created by hazyparker on 2022/1/3. +// Publish person_info topic, message type defined as learning_topic::Person + +#include +#include "learning_topic//Person.h" + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "person_publisher"); + + // create node handle + ros::NodeHandle n; + + // create a publisher + // whose topic name is person_info + // message type is learning_topic::Person + ros::Publisher person_info_pub = n.advertise("/person_info", 10); + + // set frequency for loop + ros::Rate loop_rate(1); + + while(ros::ok()){ + // init learning_topic::Person message + learning_topic::Person person_msg; + person_msg.name = "Alex"; + person_msg.sex = learning_topic::Person::male; + person_msg.age = 22; + + // publish message + person_info_pub.publish(person_msg); + + ROS_INFO("publish person info: name: %s age: %d sex: %d", + person_msg.name.c_str(), person_msg.age, person_msg.sex); + + // set delay time for each loop + loop_rate.sleep(); + } + + return 0; +} + + + diff --git a/Basics/test2_ws/src/learning_topic/src/person_subscriber.cpp b/Basics/test2_ws/src/learning_topic/src/person_subscriber.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b240cbe74fcfbac881b7c5766287da8f12def351 --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/src/person_subscriber.cpp @@ -0,0 +1,32 @@ +// +// Created by hazyparker on 2022/1/3. +// Subscribe topic /person_info, type defined as learning_topic::Person + +#include +#include "learning_topic/Person.h" + +void personInfoCallback(const learning_topic::Person::ConstPtr &msg){ + // while message received, step to callback function + // print message + ROS_INFO("subscribe person info: name %s age: %d sex: %d", + msg->name.c_str(), msg->age, msg->sex); +} + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "person_subscriber"); + + // create node handle + ros::NodeHandle n; + + // create a subscriber + // subscribe topic named /person_info + // define callback function personInfoCallback + ros::Subscriber person_info_sub = n.subscribe("/person_info", 10, personInfoCallback); + + // wait for message + ros::spin(); + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_topic/src/pose_subscriber.cpp b/Basics/test2_ws/src/learning_topic/src/pose_subscriber.cpp new file mode 100644 index 0000000000000000000000000000000000000000..614ab368a072ac25c87873991e109b3a442a2a36 --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/src/pose_subscriber.cpp @@ -0,0 +1,30 @@ +// +// Created by hazyparker on 2021/12/31. +// + +#include +#include "turtlesim/Pose.h" + +void poseCallback(const turtlesim::Pose::ConstPtr& msg){ + // print message received + ROS_INFO("Turtle Pose: x: %0.6f, y: %0.6f", msg->x, msg->y); +} + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "pose_subscriber"); + + // create node handle + ros::NodeHandle n; + + // create a subscriber + // subscribe topic whose name is /turtle1/pose + // write callback function + ros::Subscriber pose_sub = n.subscribe("/turtle1/pose", 10, poseCallback); + + // looping, wait for callback getting data + ros::spin(); + + return 0; +} + diff --git a/Basics/test2_ws/src/learning_topic/src/velocity_publisher.cpp b/Basics/test2_ws/src/learning_topic/src/velocity_publisher.cpp new file mode 100644 index 0000000000000000000000000000000000000000..13ce5136f779484a604b701ad867cb8a22faec2b --- /dev/null +++ b/Basics/test2_ws/src/learning_topic/src/velocity_publisher.cpp @@ -0,0 +1,37 @@ +// +// Created by hazyparker on 2021/12/31. +// + +#include +#include + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "velocity_publisher"); + + // create node + ros::NodeHandle n; + + // create a publisher + ros::Publisher turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // set loop rate + ros::Rate loop_rate(10); + + while(ros::ok()){ + // init msg Twist + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + + // publish message + turtle_vel_pub.publish(vel_msg); + ROS_INFO("publish turtle velocity command[%0.2f m/s, %0.2f rad/s]", + vel_msg.linear.x, vel_msg.angular.z); + + // set delay + loop_rate.sleep(); + } + + return 0; +} \ No newline at end of file diff --git a/Basics/test_ws/.catkin_workspace b/Basics/test_ws/.catkin_workspace new file mode 100644 index 0000000000000000000000000000000000000000..52fd97e7ea4bd421af3f7dacb539d241bcee6583 --- /dev/null +++ b/Basics/test_ws/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Basics/test_ws/.vscode/c_cpp_properties.json b/Basics/test_ws/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..b566baf4b3f291c9d101ca8507e9a7a49a267acf --- /dev/null +++ b/Basics/test_ws/.vscode/c_cpp_properties.json @@ -0,0 +1,30 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/local/", + "/usr/include/", + "/opt/ros/melodic/include/", + "/opt/ros/melodic/include/ros" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "compileCommands": "${workspaceFolder}/build/compile_commands.json", + "cStandard": "c11", + "cppStandard": "c++17", + "intelliSenseMode": "clang-arm64", + "browse": { + "path": [ + "/usr/local/*", + "/usr/include/*", + "/opt/ros/melodic/include/*", + "/opt/ros/melodic/include/ros/*" + ] + } + + } + ], + "version": 4 +} \ No newline at end of file diff --git a/Basics/test_ws/.vscode/settings.json b/Basics/test_ws/.vscode/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..a560512ed1d36503d924965a20862b314770c1d7 --- /dev/null +++ b/Basics/test_ws/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "python.autoComplete.extraPaths": [ + "/opt/ros/melodic/lib/python2.7/dist-packages" + ] +} \ No newline at end of file diff --git a/Basics/test_ws/.vscode/tasks.json b/Basics/test_ws/.vscode/tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..1490d3cc7493b8a0f75f0753dd41a32165f718c3 --- /dev/null +++ b/Basics/test_ws/.vscode/tasks.json @@ -0,0 +1,19 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "catkin_make", //代表提示的描述性信息 + "type": "shell", //可以选择shell或者process,如果是shell代码是在shell里面运行一个命令,如果是process代表作为一个进程来运行 + "command": "catkin_make",//这个是我们需要运行的命令 + "args": [],//如果需要在命令后面加一些后缀,可以写在这里,比如-DCATKIN_WHITELIST_PACKAGES=“pac1;pac2” + "group": {"kind":"build","isDefault":true}, + "presentation": { + "reveal": "always"//可选always或者silence,代表是否输出信息 + }, + "problemMatcher": "$msCompile" + + } + ] +} \ No newline at end of file diff --git a/Basics/test_ws/build/.built_by b/Basics/test_ws/build/.built_by new file mode 100644 index 0000000000000000000000000000000000000000..2e212dd304b5097120ab9fa2ade549804768ad5f --- /dev/null +++ b/Basics/test_ws/build/.built_by @@ -0,0 +1 @@ +catkin_make \ No newline at end of file diff --git a/Basics/test_ws/build/CATKIN_IGNORE b/Basics/test_ws/build/CATKIN_IGNORE new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/test_ws/build/CMakeCache.txt b/Basics/test_ws/build/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a2526b3e06d017eef761592fc66fb92fd387919 --- /dev/null +++ b/Basics/test_ws/build/CMakeCache.txt @@ -0,0 +1,577 @@ +# This is the CMakeCache file. +# For build in directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build +# 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 +######################## + +//Builds the googlemock subproject +BUILD_GMOCK:BOOL=ON + +//Builds the googletest subproject +BUILD_GTEST:BOOL=OFF + +//Build shared libraries (DLLs). +BUILD_SHARED_LIBS:BOOL=ON + +//List of ';' separated packages to exclude +CATKIN_BLACKLIST_PACKAGES:STRING= + +//catkin devel space +CATKIN_DEVEL_PREFIX:PATH=/home/hazyparker/project/learn_ros/Basics/test_ws/devel + +//Catkin enable testing +CATKIN_ENABLE_TESTING:BOOL=ON + +//Catkin skip testing +CATKIN_SKIP_TESTING:BOOL=OFF + +//Replace the CMake install command with a custom implementation +// using symlinks instead of copying resources +CATKIN_SYMLINK_INSTALL:BOOL=OFF + +//List of ';' separated packages to build +CATKIN_WHITELIST_PACKAGES:STRING= + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +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-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=1 + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/home/hazyparker/project/learn_ros/Basics/test_ws/install + +//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. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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_NAME:STATIC=Project + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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 program. +DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND + +//Path to a program. +EMPY_EXECUTABLE:FILEPATH=/usr/bin/empy + +//Empy script +EMPY_SCRIPT:STRING=/usr/bin/empy + +//The directory containing a CMake configuration file for GMock. +GMock_DIR:PATH=GMock_DIR-NOTFOUND + +//Path to a file. +GTEST_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +GTEST_LIBRARY:FILEPATH=GTEST_LIBRARY-NOTFOUND + +//Path to a library. +GTEST_LIBRARY_DEBUG:FILEPATH=GTEST_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +GTEST_MAIN_LIBRARY:FILEPATH=GTEST_MAIN_LIBRARY-NOTFOUND + +//Path to a library. +GTEST_MAIN_LIBRARY_DEBUG:FILEPATH=GTEST_MAIN_LIBRARY_DEBUG-NOTFOUND + +//lsb_release executable was found +LSB_FOUND:BOOL=TRUE + +//Path to a program. +LSB_RELEASE_EXECUTABLE:FILEPATH=/usr/bin/lsb_release + +//Path to a program. +NOSETESTS:FILEPATH=/usr/bin/nosetests-2.7 + +//Path to a program. +PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 + +//Specify specific Python version to use ('major.minor' or 'major') +PYTHON_VERSION:STRING=2 + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/src + +//Path to a library. +RT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.so + +//Enable debian style python package layout +SETUPTOOLS_DEB_LAYOUT:BOOL=ON + +//Name of the computer/site where compile is being run +SITE:STRING=hazy-LenovoAir14 + +//LSB Distrib tag +UBUNTU:BOOL=TRUE + +//LSB Distrib - codename tag +UBUNTU_BIONIC:BOOL=TRUE + +//Path to a file. +_gmock_INCLUDES:FILEPATH=/usr/include/gmock/gmock.h + +//Path to a file. +_gmock_SOURCES:FILEPATH=/usr/src/gmock/src/gmock.cc + +//Path to a file. +_gtest_INCLUDES:FILEPATH=/usr/include/gtest/gtest.h + +//Path to a file. +_gtest_SOURCES:FILEPATH=/usr/src/gtest/src/gtest.cc + +//The directory containing a CMake configuration file for catkin. +catkin_DIR:PATH=/opt/ros/melodic/share/catkin/cmake + +//The directory containing a CMake configuration file for cpp_common. +cpp_common_DIR:PATH=/opt/ros/melodic/share/cpp_common/cmake + +//The directory containing a CMake configuration file for geometry_msgs. +geometry_msgs_DIR:PATH=/opt/ros/melodic/share/geometry_msgs/cmake + +//Value Computed by CMake +gmock_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock + +//Dependencies for the target +gmock_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +gmock_SOURCE_DIR:STATIC=/usr/src/googletest/googlemock + +//Build all of Google Mock's own tests. +gmock_build_tests:BOOL=OFF + +//Dependencies for the target +gmock_main_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +googletest-distribution_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest + +//Value Computed by CMake +googletest-distribution_SOURCE_DIR:STATIC=/usr/src/googletest + +//Value Computed by CMake +gtest_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest + +//Dependencies for the target +gtest_LIB_DEPENDS:STATIC=general;-lpthread; + +//Value Computed by CMake +gtest_SOURCE_DIR:STATIC=/usr/src/googletest/googletest + +//Build gtest's sample programs. +gtest_build_samples:BOOL=OFF + +//Build all of gtest's own tests. +gtest_build_tests:BOOL=OFF + +//Disable uses of pthreads in gtest. +gtest_disable_pthreads:BOOL=OFF + +//Use shared (DLL) run-time lib even when Google Test is built +// as static lib. +gtest_force_shared_crt:BOOL=OFF + +//Build gtest with internal symbols hidden in shared libraries. +gtest_hide_internal_symbols:BOOL=OFF + +//Dependencies for the target +gtest_main_LIB_DEPENDS:STATIC=general;-lpthread;general;gtest; + +//Value Computed by CMake +learning_topic_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic + +//Value Computed by CMake +learning_topic_SOURCE_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic + +//Path to a library. +lib:FILEPATH=/opt/ros/melodic/lib/libxmlrpcpp.so + +//The directory containing a CMake configuration file for message_runtime. +message_runtime_DIR:PATH=/opt/ros/melodic/share/message_runtime/cmake + +//The directory containing a CMake configuration file for rosconsole. +rosconsole_DIR:PATH=/opt/ros/melodic/share/rosconsole/cmake + +//The directory containing a CMake configuration file for roscpp. +roscpp_DIR:PATH=/opt/ros/melodic/share/roscpp/cmake + +//The directory containing a CMake configuration file for roscpp_serialization. +roscpp_serialization_DIR:PATH=/opt/ros/melodic/share/roscpp_serialization/cmake + +//The directory containing a CMake configuration file for roscpp_traits. +roscpp_traits_DIR:PATH=/opt/ros/melodic/share/roscpp_traits/cmake + +//The directory containing a CMake configuration file for rosgraph_msgs. +rosgraph_msgs_DIR:PATH=/opt/ros/melodic/share/rosgraph_msgs/cmake + +//The directory containing a CMake configuration file for rospy. +rospy_DIR:PATH=/opt/ros/melodic/share/rospy/cmake + +//The directory containing a CMake configuration file for rostime. +rostime_DIR:PATH=/opt/ros/melodic/share/rostime/cmake + +//The directory containing a CMake configuration file for std_msgs. +std_msgs_DIR:PATH=/opt/ros/melodic/share/std_msgs/cmake + +//The directory containing a CMake configuration file for std_srvs. +std_srvs_DIR:PATH=/opt/ros/melodic/share/std_srvs/cmake + +//Value Computed by CMake +test_pkg_BINARY_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg + +//Value Computed by CMake +test_pkg_SOURCE_DIR:STATIC=/home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg + +//The directory containing a CMake configuration file for turtlesim. +turtlesim_DIR:PATH=/opt/ros/melodic/share/turtlesim/cmake + +//The directory containing a CMake configuration file for xmlrpcpp. +xmlrpcpp_DIR:PATH=/opt/ros/melodic/share/xmlrpcpp/cmake + + +######################## +# INTERNAL cache entries +######################## + +//catkin environment +CATKIN_ENV:INTERNAL=/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/env_cached.sh +CATKIN_TEST_RESULTS_DIR:INTERNAL=/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_results +//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/hazyparker/project/learn_ros/Basics/test_ws/build +//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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//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 +//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 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Have symbol pthread_create +CMAKE_HAVE_LIBC_CREATE: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/hazyparker/project/learn_ros/Basics/test_ws/src +//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=6 +//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 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//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=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding PythonInterp +FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python2][v2.7.17()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +GMOCK_FROM_SOURCE_FOUND:INTERNAL=TRUE +GMOCK_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include +GMOCK_FROM_SOURCE_LIBRARIES:INTERNAL=gmock +GMOCK_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/home/hazyparker/project/learn_ros/Basics/test_ws/build/gmock +GMOCK_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gmock_main +GTEST_FROM_SOURCE_FOUND:INTERNAL=TRUE +GTEST_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include +GTEST_FROM_SOURCE_LIBRARIES:INTERNAL=gtest +GTEST_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest +GTEST_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gtest_main +//ADVANCED property for variable: GTEST_INCLUDE_DIR +GTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY +GTEST_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY_DEBUG +GTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY +GTEST_MAIN_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY_DEBUG +GTEST_MAIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PYTHON_EXECUTABLE +PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1 +//This needs to be in PYTHONPATH when 'setup.py install' is called. +// And it needs to match. But setuptools won't tell us where +// it will install things. +PYTHON_INSTALL_DIR:INTERNAL=lib/python2.7/dist-packages + diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9e0e71d8c6b896ec560f07199f9cc974e84817a5 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "7.5.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_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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 "x86_64-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 "x86_64-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_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..85984d753b2f39384841d4e81fd0f2225061bc74 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.5.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") +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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "x86_64-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 "x86_64-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_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..b1860a3dd40b90b19fab68ce7a4bf1a8fee6135d Binary files /dev/null and b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..19a9ccae8956d20ea78fcbaa929a195ae4089300 Binary files /dev/null and b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..41b42ad82e685fff28d761366580348c3c4dea5e --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.4.0-91-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-91-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.4.0-91-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.4.0-91-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..722faa803f6df8628261ccd5da97b74fa64c0114 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(__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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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 diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..11b7df452ad29dfd7bf1d9b188856c9e33182403 Binary files /dev/null and b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdC/a.out differ diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..2d66298588989dc5d404dae0025b8bf4e952498e --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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; +} diff --git a/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..71c2ceda86a2fae89d661d131b89af3990e37838 Binary files /dev/null and b/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out differ diff --git a/Basics/test_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b0fbfa0b0277b364d8eb22761eae59dcbbbde599 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hazyparker/project/learn_ros/Basics/test_ws/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/CMakeFiles/CMakeError.log b/Basics/test_ws/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000000000000000000000000000000000000..6ba4c77db19ee2eb0cc1e1118bd7d8a56a2413d0 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/CMakeError.log @@ -0,0 +1,55 @@ +Determining if the pthread_create exist failed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_8aafe/fast" +/usr/bin/make -f CMakeFiles/cmTC_8aafe.dir/build.make CMakeFiles/cmTC_8aafe.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_8aafe.dir/CheckSymbolExists.c.o +/usr/bin/cc -o CMakeFiles/cmTC_8aafe.dir/CheckSymbolExists.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c +Linking C executable cmTC_8aafe +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aafe.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_8aafe.dir/CheckSymbolExists.c.o -o cmTC_8aafe +CMakeFiles/cmTC_8aafe.dir/CheckSymbolExists.c.o:在函数‘main’中: +CheckSymbolExists.c:(.text+0x1b):对‘pthread_create’未定义的引用 +collect2: error: ld returned 1 exit status +CMakeFiles/cmTC_8aafe.dir/build.make:97: recipe for target 'cmTC_8aafe' failed +make[1]: *** [cmTC_8aafe] Error 1 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Makefile:126: recipe for target 'cmTC_8aafe/fast' failed +make: *** [cmTC_8aafe/fast] Error 2 + +File /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef pthread_create + return ((int*)(&pthread_create))[argc]; +#else + (void)argc; + return 0; +#endif +} + +Determining if the function pthread_create exists in the pthreads failed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_1e32d/fast" +/usr/bin/make -f CMakeFiles/cmTC_1e32d.dir/build.make CMakeFiles/cmTC_1e32d.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_1e32d.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_1e32d.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c +Linking C executable cmTC_1e32d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1e32d.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_1e32d.dir/CheckFunctionExists.c.o -o cmTC_1e32d -lpthreads +/usr/bin/ld: 找不到 -lpthreads +collect2: error: ld returned 1 exit status +CMakeFiles/cmTC_1e32d.dir/build.make:97: recipe for target 'cmTC_1e32d' failed +make[1]: *** [cmTC_1e32d] Error 1 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Makefile:126: recipe for target 'cmTC_1e32d/fast' failed +make: *** [cmTC_1e32d/fast] Error 2 + + diff --git a/Basics/test_ws/build/CMakeFiles/CMakeOutput.log b/Basics/test_ws/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..d4a8f0fc575d765015068a61969efe0b7fd9bdb6 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,661 @@ +The system is: Linux - 5.4.0-91-generic - x86_64 +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/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/3.10.2/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/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_04470/fast" +/usr/bin/make -f CMakeFiles/cmTC_04470.dir/build.make CMakeFiles/cmTC_04470.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_04470.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_04470.dir/testCCompiler.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_04470 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_04470.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_04470.dir/testCCompiler.c.o -o cmTC_04470 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_23acc/fast" +/usr/bin/make -f CMakeFiles/cmTC_23acc.dir/build.make CMakeFiles/cmTC_23acc.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_23acc +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23acc.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o -o cmTC_23acc +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_23acc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccD4o6vd.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_23acc /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_23acc.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/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_23acc' '-mtune=generic' '-march=x86-64' +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_23acc/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_23acc.dir/build.make CMakeFiles/cmTC_23acc.dir/build] + ignore line: [make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp”] + ignore line: [Building C object CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_23acc] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23acc.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_23acc.dir/CMakeCCompilerABI.c.o -o cmTC_23acc ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_23acc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccD4o6vd.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_23acc /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_23acc.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/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccD4o6vd.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_23acc] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_23acc.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/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_89509/fast" +/usr/bin/make -f CMakeFiles/cmTC_89509.dir/build.make CMakeFiles/cmTC_89509.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_89509.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_89509.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_89509 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_89509.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_89509.dir/feature_tests.c.o -o cmTC_89509 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_966e8/fast" +/usr/bin/make -f CMakeFiles/cmTC_966e8.dir/build.make CMakeFiles/cmTC_966e8.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_966e8.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_966e8.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_966e8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_966e8.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_966e8.dir/feature_tests.c.o -o cmTC_966e8 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_45ff8/fast" +/usr/bin/make -f CMakeFiles/cmTC_45ff8.dir/build.make CMakeFiles/cmTC_45ff8.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_45ff8.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_45ff8.dir/feature_tests.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_45ff8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_45ff8.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_45ff8.dir/feature_tests.c.o -o cmTC_45ff8 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_b54e5/fast" +/usr/bin/make -f CMakeFiles/cmTC_b54e5.dir/build.make CMakeFiles/cmTC_b54e5.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_b54e5.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_b54e5.dir/testCXXCompiler.cxx.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_b54e5 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b54e5.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_b54e5.dir/testCXXCompiler.cxx.o -o cmTC_b54e5 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_2ae41/fast" +/usr/bin/make -f CMakeFiles/cmTC_2ae41.dir/build.make CMakeFiles/cmTC_2ae41.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_2ae41 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ae41.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2ae41 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_2ae41' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHuwidx.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2ae41 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_2ae41' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_2ae41/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_2ae41.dir/build.make CMakeFiles/cmTC_2ae41.dir/build] + ignore line: [make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp”] + ignore line: [Building CXX object CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_2ae41] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ae41.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2ae41 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_2ae41' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHuwidx.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 -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2ae41 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_2ae41.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccHuwidx.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_2ae41] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_2ae41.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/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_d74d2/fast" +/usr/bin/make -f CMakeFiles/cmTC_d74d2.dir/build.make CMakeFiles/cmTC_d74d2.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_d74d2.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_d74d2.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_d74d2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d74d2.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_d74d2.dir/feature_tests.cxx.o -o cmTC_d74d2 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_6efb8/fast" +/usr/bin/make -f CMakeFiles/cmTC_6efb8.dir/build.make CMakeFiles/cmTC_6efb8.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_6efb8.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_6efb8.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_6efb8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6efb8.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_6efb8.dir/feature_tests.cxx.o -o cmTC_6efb8 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_f354c/fast" +/usr/bin/make -f CMakeFiles/cmTC_f354c.dir/build.make CMakeFiles/cmTC_f354c.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_f354c.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_f354c.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_f354c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f354c.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_f354c.dir/feature_tests.cxx.o -o cmTC_f354c +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_da696/fast" +/usr/bin/make -f CMakeFiles/cmTC_da696.dir/build.make CMakeFiles/cmTC_da696.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_da696.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_da696.dir/feature_tests.cxx.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_da696 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da696.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_da696.dir/feature_tests.cxx.o -o cmTC_da696 +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_032bf/fast" +/usr/bin/make -f CMakeFiles/cmTC_032bf.dir/build.make CMakeFiles/cmTC_032bf.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_032bf.dir/CheckIncludeFile.c.o +/usr/bin/cc -o CMakeFiles/cmTC_032bf.dir/CheckIncludeFile.c.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_032bf +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_032bf.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_032bf.dir/CheckIncludeFile.c.o -o cmTC_032bf +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + +Determining if the function pthread_create exists in the pthread passed with the following output: +Change Dir: /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_7aa35/fast" +/usr/bin/make -f CMakeFiles/cmTC_7aa35.dir/build.make CMakeFiles/cmTC_7aa35.dir/build +make[1]: 进入目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_7aa35.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_7aa35.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c +Linking C executable cmTC_7aa35 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7aa35.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_7aa35.dir/CheckFunctionExists.c.o -o cmTC_7aa35 -lpthread +make[1]: 离开目录“/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/CMakeTmp” + + diff --git a/Basics/test_ws/build/CMakeFiles/CMakeRuleHashes.txt b/Basics/test_ws/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..b990627489d3506b97776f284c619eea66161dbd --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,2 @@ +# Hashes of file build rules. +648eb50bd6de7c4df68a8f42fc1888c7 CMakeFiles/clean_test_results diff --git a/Basics/test_ws/build/CMakeFiles/Makefile.cmake b/Basics/test_ws/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..856cdb4cfc4f9e81d8a98cd5256912bd5c92cc75 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,236 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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" + "CMakeFiles/3.10.2/CMakeCCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.10.2/CMakeSystem.cmake" + "catkin/catkin_generated/version/package.cmake" + "catkin_generated/installspace/_setup_util.py" + "catkin_generated/order_packages.cmake" + "learning_topic/catkin_generated/ordered_paths.cmake" + "learning_topic/catkin_generated/package.cmake" + "test_pkg/catkin_generated/ordered_paths.cmake" + "test_pkg/catkin_generated/package.cmake" + "/home/hazyparker/project/learn_ros/Basics/test_ws/src/CMakeLists.txt" + "/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/CMakeLists.txt" + "/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/package.xml" + "/home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg/CMakeLists.txt" + "/home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg/package.xml" + "/opt/ros/melodic/share/catkin/cmake/../package.xml" + "/opt/ros/melodic/share/catkin/cmake/all.cmake" + "/opt/ros/melodic/share/catkin/cmake/assert.cmake" + "/opt/ros/melodic/share/catkin/cmake/atomic_configure_file.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkinConfig-version.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_add_env_hooks.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_destinations.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_download.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_generate_environment.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_install_python.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_libraries.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_metapackage.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_package.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_package_xml.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_python_setup.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_symlink_install.cmake" + "/opt/ros/melodic/share/catkin/cmake/catkin_workspace.cmake" + "/opt/ros/melodic/share/catkin/cmake/custom_install.cmake" + "/opt/ros/melodic/share/catkin/cmake/debug_message.cmake" + "/opt/ros/melodic/share/catkin/cmake/em/order_packages.cmake.em" + "/opt/ros/melodic/share/catkin/cmake/em/pkg.pc.em" + "/opt/ros/melodic/share/catkin/cmake/em_expand.cmake" + "/opt/ros/melodic/share/catkin/cmake/empy.cmake" + "/opt/ros/melodic/share/catkin/cmake/find_program_required.cmake" + "/opt/ros/melodic/share/catkin/cmake/interrogate_setup_dot_py.py" + "/opt/ros/melodic/share/catkin/cmake/legacy.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_append_deduplicate.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_append_unique.cmake" + "/opt/ros/melodic/share/catkin/cmake/list_insert_in_workspace_order.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/lsb.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/ubuntu.cmake" + "/opt/ros/melodic/share/catkin/cmake/platform/windows.cmake" + "/opt/ros/melodic/share/catkin/cmake/python.cmake" + "/opt/ros/melodic/share/catkin/cmake/safe_execute_process.cmake" + "/opt/ros/melodic/share/catkin/cmake/stamp.cmake" + "/opt/ros/melodic/share/catkin/cmake/string_starts_with.cmake" + "/opt/ros/melodic/share/catkin/cmake/templates/_setup_util.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/env.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/generate_cached_setup.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.bash.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/local_setup.zsh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/order_packages.context.py.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkg.context.pc.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkgConfig-version.cmake.in" + "/opt/ros/melodic/share/catkin/cmake/templates/pkgConfig.cmake.in" + "/opt/ros/melodic/share/catkin/cmake/templates/rosinstall.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.bash.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.sh.in" + "/opt/ros/melodic/share/catkin/cmake/templates/setup.zsh.in" + "/opt/ros/melodic/share/catkin/cmake/test/catkin_download_test_data.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/gtest.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/nosetests.cmake" + "/opt/ros/melodic/share/catkin/cmake/test/tests.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/doxygen.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/libraries.cmake" + "/opt/ros/melodic/share/catkin/cmake/tools/rt.cmake" + "/opt/ros/melodic/share/cpp_common/cmake/cpp_commonConfig-version.cmake" + "/opt/ros/melodic/share/cpp_common/cmake/cpp_commonConfig.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgsConfig-version.cmake" + "/opt/ros/melodic/share/geometry_msgs/cmake/geometry_msgsConfig.cmake" + "/opt/ros/melodic/share/message_runtime/cmake/message_runtimeConfig-version.cmake" + "/opt/ros/melodic/share/message_runtime/cmake/message_runtimeConfig.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsole-extras.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsoleConfig-version.cmake" + "/opt/ros/melodic/share/rosconsole/cmake/rosconsoleConfig.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscpp-msg-extras.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscppConfig-version.cmake" + "/opt/ros/melodic/share/roscpp/cmake/roscppConfig.cmake" + "/opt/ros/melodic/share/roscpp_serialization/cmake/roscpp_serializationConfig-version.cmake" + "/opt/ros/melodic/share/roscpp_serialization/cmake/roscpp_serializationConfig.cmake" + "/opt/ros/melodic/share/roscpp_traits/cmake/roscpp_traitsConfig-version.cmake" + "/opt/ros/melodic/share/roscpp_traits/cmake/roscpp_traitsConfig.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgsConfig-version.cmake" + "/opt/ros/melodic/share/rosgraph_msgs/cmake/rosgraph_msgsConfig.cmake" + "/opt/ros/melodic/share/rospy/cmake/rospyConfig-version.cmake" + "/opt/ros/melodic/share/rospy/cmake/rospyConfig.cmake" + "/opt/ros/melodic/share/rostime/cmake/rostimeConfig-version.cmake" + "/opt/ros/melodic/share/rostime/cmake/rostimeConfig.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgs-msg-extras.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgsConfig-version.cmake" + "/opt/ros/melodic/share/std_msgs/cmake/std_msgsConfig.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvs-msg-extras.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvsConfig-version.cmake" + "/opt/ros/melodic/share/std_srvs/cmake/std_srvsConfig.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesim-msg-extras.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesimConfig-version.cmake" + "/opt/ros/melodic/share/turtlesim/cmake/turtlesimConfig.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcpp-extras.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcppConfig-version.cmake" + "/opt/ros/melodic/share/xmlrpcpp/cmake/xmlrpcppConfig.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.10/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.10/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.10/Modules/CheckSymbolExists.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.10/Modules/DartConfiguration.tcl.in" + "/usr/share/cmake-3.10/Modules/FindGTest.cmake" + "/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.10/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.10/Modules/FindPythonInterp.cmake" + "/usr/share/cmake-3.10/Modules/FindThreads.cmake" + "/usr/share/cmake-3.10/Modules/GoogleTest.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.10/Modules/Platform/UnixPaths.cmake" + "/usr/src/googletest/CMakeLists.txt" + "/usr/src/googletest/googlemock/CMakeLists.txt" + "/usr/src/googletest/googletest/CMakeLists.txt" + "/usr/src/googletest/googletest/cmake/internal_utils.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CTestConfiguration.ini" + "catkin_generated/stamps/Project/package.xml.stamp" + "atomic_configure/_setup_util.py" + "atomic_configure/env.sh" + "atomic_configure/setup.bash" + "atomic_configure/local_setup.bash" + "atomic_configure/setup.sh" + "atomic_configure/local_setup.sh" + "atomic_configure/setup.zsh" + "atomic_configure/local_setup.zsh" + "atomic_configure/.rosinstall" + "catkin_generated/installspace/_setup_util.py" + "catkin_generated/stamps/Project/_setup_util.py.stamp" + "catkin_generated/installspace/env.sh" + "catkin_generated/installspace/setup.bash" + "catkin_generated/installspace/local_setup.bash" + "catkin_generated/installspace/setup.sh" + "catkin_generated/installspace/local_setup.sh" + "catkin_generated/installspace/setup.zsh" + "catkin_generated/installspace/local_setup.zsh" + "catkin_generated/installspace/.rosinstall" + "catkin_generated/generate_cached_setup.py" + "catkin_generated/env_cached.sh" + "catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp" + "catkin_generated/order_packages.py" + "catkin_generated/stamps/Project/order_packages.cmake.em.stamp" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake" + "gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + "test_pkg/CMakeFiles/CMakeDirectoryInformation.cmake" + "learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/tests.dir/DependInfo.cmake" + "CMakeFiles/download_extra_data.dir/DependInfo.cmake" + "CMakeFiles/run_tests.dir/DependInfo.cmake" + "CMakeFiles/clean_test_results.dir/DependInfo.cmake" + "CMakeFiles/doxygen.dir/DependInfo.cmake" + "gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake" + "gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake" + "gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake" + "test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/velocity_publisher.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake" + "learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake" + ) diff --git a/Basics/test_ws/build/CMakeFiles/Makefile2 b/Basics/test_ws/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..e08c353fb39a35533640d6faf1ac6a0a61b84da9 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/Makefile2 @@ -0,0 +1,1478 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# Target rules for target CMakeFiles/tests.dir + +# All Build rule for target. +CMakeFiles/tests.dir/all: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/depend + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target tests" +.PHONY : CMakeFiles/tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/tests.dir/rule + +# Convenience name for target. +tests: CMakeFiles/tests.dir/rule + +.PHONY : tests + +# clean rule for target. +CMakeFiles/tests.dir/clean: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/clean +.PHONY : CMakeFiles/tests.dir/clean + +# clean rule for target. +clean: CMakeFiles/tests.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/download_extra_data.dir + +# All Build rule for target. +CMakeFiles/download_extra_data.dir/all: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/depend + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target download_extra_data" +.PHONY : CMakeFiles/download_extra_data.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/download_extra_data.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/download_extra_data.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/download_extra_data.dir/rule + +# Convenience name for target. +download_extra_data: CMakeFiles/download_extra_data.dir/rule + +.PHONY : download_extra_data + +# clean rule for target. +CMakeFiles/download_extra_data.dir/clean: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/clean +.PHONY : CMakeFiles/download_extra_data.dir/clean + +# clean rule for target. +clean: CMakeFiles/download_extra_data.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/run_tests.dir + +# All Build rule for target. +CMakeFiles/run_tests.dir/all: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/depend + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target run_tests" +.PHONY : CMakeFiles/run_tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/run_tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/run_tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/run_tests.dir/rule + +# Convenience name for target. +run_tests: CMakeFiles/run_tests.dir/rule + +.PHONY : run_tests + +# clean rule for target. +CMakeFiles/run_tests.dir/clean: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/clean +.PHONY : CMakeFiles/run_tests.dir/clean + +# clean rule for target. +clean: CMakeFiles/run_tests.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/clean_test_results.dir + +# All Build rule for target. +CMakeFiles/clean_test_results.dir/all: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/depend + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target clean_test_results" +.PHONY : CMakeFiles/clean_test_results.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/clean_test_results.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/clean_test_results.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/clean_test_results.dir/rule + +# Convenience name for target. +clean_test_results: CMakeFiles/clean_test_results.dir/rule + +.PHONY : clean_test_results + +# clean rule for target. +CMakeFiles/clean_test_results.dir/clean: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/clean +.PHONY : CMakeFiles/clean_test_results.dir/clean + +# clean rule for target. +clean: CMakeFiles/clean_test_results.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/doxygen.dir + +# All Build rule for target. +CMakeFiles/doxygen.dir/all: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/depend + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target doxygen" +.PHONY : CMakeFiles/doxygen.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/doxygen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/doxygen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : CMakeFiles/doxygen.dir/rule + +# Convenience name for target. +doxygen: CMakeFiles/doxygen.dir/rule + +.PHONY : doxygen + +# clean rule for target. +CMakeFiles/doxygen.dir/clean: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/clean +.PHONY : CMakeFiles/doxygen.dir/clean + +# clean rule for target. +clean: CMakeFiles/doxygen.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory gtest + +# Convenience name for "all" pass in the directory. +gtest/all: gtest/googlemock/all + +.PHONY : gtest/all + +# Convenience name for "clean" pass in the directory. +gtest/clean: gtest/googlemock/clean + +.PHONY : gtest/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/preinstall: gtest/googlemock/preinstall + +.PHONY : gtest/preinstall + +#============================================================================= +# Directory level rules for directory gtest/googlemock + +# Convenience name for "all" pass in the directory. +gtest/googlemock/all: gtest/googlemock/gtest/all + +.PHONY : gtest/googlemock/all + +# Convenience name for "clean" pass in the directory. +gtest/googlemock/clean: gtest/googlemock/CMakeFiles/gmock_main.dir/clean +gtest/googlemock/clean: gtest/googlemock/CMakeFiles/gmock.dir/clean +gtest/googlemock/clean: gtest/googlemock/gtest/clean + +.PHONY : gtest/googlemock/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/googlemock/preinstall: gtest/googlemock/gtest/preinstall + +.PHONY : gtest/googlemock/preinstall + +#============================================================================= +# Target rules for target gtest/googlemock/CMakeFiles/gmock_main.dir + +# All Build rule for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/all: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/depend + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=4,5,6,7 "Built target gmock_main" +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +.PHONY : gmock_main + +# clean rule for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/clean +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +# clean rule for target. +clean: gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target gtest/googlemock/CMakeFiles/gmock.dir + +# All Build rule for target. +gtest/googlemock/CMakeFiles/gmock.dir/all: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/depend + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=1,2,3 "Built target gmock" +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/CMakeFiles/gmock.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 3 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: gtest/googlemock/CMakeFiles/gmock.dir/rule + +.PHONY : gmock + +# clean rule for target. +gtest/googlemock/CMakeFiles/gmock.dir/clean: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/clean +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/clean + +# clean rule for target. +clean: gtest/googlemock/CMakeFiles/gmock.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory gtest/googlemock/gtest + +# Convenience name for "all" pass in the directory. +gtest/googlemock/gtest/all: + +.PHONY : gtest/googlemock/gtest/all + +# Convenience name for "clean" pass in the directory. +gtest/googlemock/gtest/clean: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +gtest/googlemock/gtest/clean: gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +.PHONY : gtest/googlemock/gtest/clean + +# Convenience name for "preinstall" pass in the directory. +gtest/googlemock/gtest/preinstall: + +.PHONY : gtest/googlemock/gtest/preinstall + +#============================================================================= +# Target rules for target gtest/googlemock/gtest/CMakeFiles/gtest_main.dir + +# All Build rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all: gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=10,11 "Built target gtest_main" +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +.PHONY : gtest_main + +# clean rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +# clean rule for target. +clean: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target gtest/googlemock/gtest/CMakeFiles/gtest.dir + +# All Build rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/all: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=8,9 "Built target gtest" +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + +# Build rule for subdir invocation for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +.PHONY : gtest + +# clean rule for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +# clean rule for target. +clean: gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory test_pkg + +# Convenience name for "all" pass in the directory. +test_pkg/all: + +.PHONY : test_pkg/all + +# Convenience name for "clean" pass in the directory. +test_pkg/clean: test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean +test_pkg/clean: test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +.PHONY : test_pkg/clean + +# Convenience name for "preinstall" pass in the directory. +test_pkg/preinstall: + +.PHONY : test_pkg/preinstall + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/roscpp_generate_messages_py.dir + +# All Build rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_py" +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule + +# Convenience name for target. +roscpp_generate_messages_py: test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule + +.PHONY : roscpp_generate_messages_py + +# clean rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir + +# All Build rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_eus" +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +# Convenience name for target. +roscpp_generate_messages_eus: test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +.PHONY : roscpp_generate_messages_eus + +# clean rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_lisp" +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_lisp: test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +.PHONY : roscpp_generate_messages_lisp + +# clean rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_cpp" +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_cpp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# clean rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_lisp" +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_lisp: test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +.PHONY : std_msgs_generate_messages_lisp + +# clean rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_cpp" +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_cpp: test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +.PHONY : roscpp_generate_messages_cpp + +# clean rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir + +# All Build rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_eus" +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_eus: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_eus + +# clean rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_lisp" +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_lisp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# clean rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir + +# All Build rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_cpp" +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_cpp: test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +.PHONY : std_msgs_generate_messages_cpp + +# clean rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_nodejs" +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# clean rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir + +# All Build rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target rosgraph_msgs_generate_messages_py" +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_py: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_py + +# clean rule for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir + +# All Build rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_eus" +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_eus: test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +.PHONY : std_msgs_generate_messages_eus + +# clean rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_nodejs" +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +.PHONY : std_msgs_generate_messages_nodejs + +# clean rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir + +# All Build rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target roscpp_generate_messages_nodejs" +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +# Convenience name for target. +roscpp_generate_messages_nodejs: test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +.PHONY : roscpp_generate_messages_nodejs + +# clean rule for target. +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir + +# All Build rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/all: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/depend + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_msgs_generate_messages_py" +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_py: test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +.PHONY : std_msgs_generate_messages_py + +# clean rule for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory learning_topic + +# Convenience name for "all" pass in the directory. +learning_topic/all: learning_topic/CMakeFiles/velocity_publisher.dir/all + +.PHONY : learning_topic/all + +# Convenience name for "clean" pass in the directory. +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/velocity_publisher.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean +learning_topic/clean: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +.PHONY : learning_topic/clean + +# Convenience name for "preinstall" pass in the directory. +learning_topic/preinstall: + +.PHONY : learning_topic/preinstall + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +.PHONY : turtlesim_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +.PHONY : geometry_msgs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/velocity_publisher.dir + +# All Build rule for target. +learning_topic/CMakeFiles/velocity_publisher.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=12,13 "Built target velocity_publisher" +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/all + +# Include target in all. +all: learning_topic/CMakeFiles/velocity_publisher.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/velocity_publisher.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/velocity_publisher.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/rule + +# Convenience name for target. +velocity_publisher: learning_topic/CMakeFiles/velocity_publisher.dir/rule + +.PHONY : velocity_publisher + +# clean rule for target. +learning_topic/CMakeFiles/velocity_publisher.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/clean +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/velocity_publisher.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +.PHONY : geometry_msgs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +.PHONY : turtlesim_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +.PHONY : geometry_msgs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +.PHONY : turtlesim_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_cpp" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +.PHONY : std_srvs_generate_messages_cpp + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +.PHONY : geometry_msgs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +.PHONY : turtlesim_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target geometry_msgs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +.PHONY : geometry_msgs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +.PHONY : std_srvs_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_lisp" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +.PHONY : std_srvs_generate_messages_lisp + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir + +# All Build rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target turtlesim_generate_messages_eus" +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +.PHONY : turtlesim_generate_messages_eus + +# clean rule for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_nodejs" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +.PHONY : std_srvs_generate_messages_nodejs + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir + +# All Build rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num= "Built target std_srvs_generate_messages_py" +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all + +# Build rule for subdir invocation for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +.PHONY : std_srvs_generate_messages_py + +# clean rule for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +# clean rule for target. +clean: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +.PHONY : 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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/CMakeFiles/TargetDirectories.txt b/Basics/test_ws/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bb95b2b45715b6a4e1ea843bc9ebddafdc0ee56 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,82 @@ +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/tests.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/download_extra_data.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/run_tests.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/clean_test_results.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/doxygen.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/install/strip.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/install/local.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/rebuild_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/edit_cache.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/install.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/list_install_components.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/test.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir +/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir diff --git a/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/build.make b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4c3fbbfe4f506bc3f3705236ad1409a3640bcee9 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for clean_test_results. + +# Include the progress variables for this target. +include CMakeFiles/clean_test_results.dir/progress.make + +CMakeFiles/clean_test_results: + /usr/bin/python2 /opt/ros/melodic/share/catkin/cmake/test/remove_test_results.py /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_results + +clean_test_results: CMakeFiles/clean_test_results +clean_test_results: CMakeFiles/clean_test_results.dir/build.make + +.PHONY : clean_test_results + +# Rule to build all files generated by this target. +CMakeFiles/clean_test_results.dir/build: clean_test_results + +.PHONY : CMakeFiles/clean_test_results.dir/build + +CMakeFiles/clean_test_results.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/clean_test_results.dir/cmake_clean.cmake +.PHONY : CMakeFiles/clean_test_results.dir/clean + +CMakeFiles/clean_test_results.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/clean_test_results.dir/depend + diff --git a/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..63bf0e0f4cda9ec3f7123aee2e30d09703661043 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/clean_test_results" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/clean_test_results.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/progress.make b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/clean_test_results.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/CMakeFiles/cmake.check_cache b/Basics/test_ws/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/build.make b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5f049127bc8fb615a9aa058fbda88eef1efe063b --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for download_extra_data. + +# Include the progress variables for this target. +include CMakeFiles/download_extra_data.dir/progress.make + +download_extra_data: CMakeFiles/download_extra_data.dir/build.make + +.PHONY : download_extra_data + +# Rule to build all files generated by this target. +CMakeFiles/download_extra_data.dir/build: download_extra_data + +.PHONY : CMakeFiles/download_extra_data.dir/build + +CMakeFiles/download_extra_data.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/download_extra_data.dir/cmake_clean.cmake +.PHONY : CMakeFiles/download_extra_data.dir/clean + +CMakeFiles/download_extra_data.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/download_extra_data.dir/depend + diff --git a/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf7d7e25c0800701682eb7dcc091389edb9f8952 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/download_extra_data.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/progress.make b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/download_extra_data.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake b/Basics/test_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/CMakeFiles/doxygen.dir/build.make b/Basics/test_ws/build/CMakeFiles/doxygen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..954b1b0dc17e127b5766982f416ca481c8034524 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/doxygen.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for doxygen. + +# Include the progress variables for this target. +include CMakeFiles/doxygen.dir/progress.make + +doxygen: CMakeFiles/doxygen.dir/build.make + +.PHONY : doxygen + +# Rule to build all files generated by this target. +CMakeFiles/doxygen.dir/build: doxygen + +.PHONY : CMakeFiles/doxygen.dir/build + +CMakeFiles/doxygen.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/doxygen.dir/cmake_clean.cmake +.PHONY : CMakeFiles/doxygen.dir/clean + +CMakeFiles/doxygen.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/doxygen.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/doxygen.dir/depend + diff --git a/Basics/test_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake b/Basics/test_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ef20a758f2dfce53bd9a1326dac1182bbe19a225 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/doxygen.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/doxygen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/CMakeFiles/doxygen.dir/progress.make b/Basics/test_ws/build/CMakeFiles/doxygen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/doxygen.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/CMakeFiles/feature_tests.bin b/Basics/test_ws/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000000000000000000000000000000000000..ae0f49908c89c0ae48d68d46e0157414893eb334 Binary files /dev/null and b/Basics/test_ws/build/CMakeFiles/feature_tests.bin differ diff --git a/Basics/test_ws/build/CMakeFiles/feature_tests.c b/Basics/test_ws/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000000000000000000000000000000000000..83e86dd8cd85f9f7554f51122b8cd08412ec01f2 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/Basics/test_ws/build/CMakeFiles/feature_tests.cxx b/Basics/test_ws/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000000000000000000000000000000000000..b93418c6ed69feaf1b5c2feb9592bbdb5a5f042c --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/Basics/test_ws/build/CMakeFiles/progress.marks b/Basics/test_ws/build/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Basics/test_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake b/Basics/test_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/CMakeFiles/run_tests.dir/build.make b/Basics/test_ws/build/CMakeFiles/run_tests.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..514290854b6392f77374f0aa14ec74d4826e43a0 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/run_tests.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for run_tests. + +# Include the progress variables for this target. +include CMakeFiles/run_tests.dir/progress.make + +run_tests: CMakeFiles/run_tests.dir/build.make + +.PHONY : run_tests + +# Rule to build all files generated by this target. +CMakeFiles/run_tests.dir/build: run_tests + +.PHONY : CMakeFiles/run_tests.dir/build + +CMakeFiles/run_tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/run_tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/run_tests.dir/clean + +CMakeFiles/run_tests.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/run_tests.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/run_tests.dir/depend + diff --git a/Basics/test_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake b/Basics/test_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e67d34f6d11ce305bbc51c998454c8d9cc3b7470 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/run_tests.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/run_tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/CMakeFiles/run_tests.dir/progress.make b/Basics/test_ws/build/CMakeFiles/run_tests.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/run_tests.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/CMakeFiles/tests.dir/DependInfo.cmake b/Basics/test_ws/build/CMakeFiles/tests.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/tests.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/CMakeFiles/tests.dir/build.make b/Basics/test_ws/build/CMakeFiles/tests.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..58e933dd18f9443a01d2d70a49e14b34763b646b --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/tests.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for tests. + +# Include the progress variables for this target. +include CMakeFiles/tests.dir/progress.make + +tests: CMakeFiles/tests.dir/build.make + +.PHONY : tests + +# Rule to build all files generated by this target. +CMakeFiles/tests.dir/build: tests + +.PHONY : CMakeFiles/tests.dir/build + +CMakeFiles/tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/tests.dir/clean + +CMakeFiles/tests.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/tests.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/tests.dir/depend + diff --git a/Basics/test_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake b/Basics/test_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..910f04d829639aafb592cbe6806fdcd7276630ee --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/tests.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/CMakeFiles/tests.dir/progress.make b/Basics/test_ws/build/CMakeFiles/tests.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/CMakeFiles/tests.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/CTestConfiguration.ini b/Basics/test_ws/build/CTestConfiguration.ini new file mode 100644 index 0000000000000000000000000000000000000000..034e7d1f2489468c464dd48f5bcf471c071fc5e4 --- /dev/null +++ b/Basics/test_ws/build/CTestConfiguration.ini @@ -0,0 +1,115 @@ +# 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/hazyparker/project/learn_ros/Basics/test_ws/src +BuildDirectory: /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Where to place the cost data store +CostDataFile: + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: hazy-LenovoAir14 + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: + +# Subprojects +LabelsForSubprojects: + +# Submission information +IsCDash: +CDashVersion: +QueryCDashVersion: +DropSite: +DropLocation: +DropSiteUser: +DropSitePassword: +DropSiteMode: +DropMethod: +TriggerSite: +ScpCommand: + +# Dashboard start time +NightlyStartTime: + +# Commands for the build/test/submit cycle +ConfigureCommand: "/usr/bin/cmake" "/home/hazyparker/project/learn_ros/Basics/test_ws/src" +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: 7.5.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: diff --git a/Basics/test_ws/build/CTestCustom.cmake b/Basics/test_ws/build/CTestCustom.cmake new file mode 100644 index 0000000000000000000000000000000000000000..14956f319e3982ef0886cb4e45e5b67437a99b2a --- /dev/null +++ b/Basics/test_ws/build/CTestCustom.cmake @@ -0,0 +1,2 @@ +set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0) +set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0) diff --git a/Basics/test_ws/build/CTestTestfile.cmake b/Basics/test_ws/build/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..51bbfcc9d69a88641d34da12b33b334b06cf04b4 --- /dev/null +++ b/Basics/test_ws/build/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") +subdirs("test_pkg") +subdirs("learning_topic") diff --git a/Basics/test_ws/build/Makefile b/Basics/test_ws/build/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..1eb3c592649a10c7e22edc01f6bdee76b9714b72 --- /dev/null +++ b/Basics/test_ws/build/Makefile @@ -0,0 +1,756 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 +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 -H$(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 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 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/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named tests + +# Build rule for target. +tests: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 tests +.PHONY : tests + +# fast build rule for target. +tests/fast: + $(MAKE) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build +.PHONY : tests/fast + +#============================================================================= +# Target rules for targets named download_extra_data + +# Build rule for target. +download_extra_data: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 download_extra_data +.PHONY : download_extra_data + +# fast build rule for target. +download_extra_data/fast: + $(MAKE) -f CMakeFiles/download_extra_data.dir/build.make CMakeFiles/download_extra_data.dir/build +.PHONY : download_extra_data/fast + +#============================================================================= +# Target rules for targets named run_tests + +# Build rule for target. +run_tests: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 run_tests +.PHONY : run_tests + +# fast build rule for target. +run_tests/fast: + $(MAKE) -f CMakeFiles/run_tests.dir/build.make CMakeFiles/run_tests.dir/build +.PHONY : run_tests/fast + +#============================================================================= +# Target rules for targets named clean_test_results + +# Build rule for target. +clean_test_results: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 clean_test_results +.PHONY : clean_test_results + +# fast build rule for target. +clean_test_results/fast: + $(MAKE) -f CMakeFiles/clean_test_results.dir/build.make CMakeFiles/clean_test_results.dir/build +.PHONY : clean_test_results/fast + +#============================================================================= +# Target rules for targets named doxygen + +# Build rule for target. +doxygen: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 doxygen +.PHONY : doxygen + +# fast build rule for target. +doxygen/fast: + $(MAKE) -f CMakeFiles/doxygen.dir/build.make CMakeFiles/doxygen.dir/build +.PHONY : doxygen/fast + +#============================================================================= +# Target rules for targets named gmock_main + +# Build rule for target. +gmock_main: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gmock_main +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +#============================================================================= +# Target rules for targets named gmock + +# Build rule for target. +gmock: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gmock +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +#============================================================================= +# Target rules for targets named gtest_main + +# Build rule for target. +gtest_main: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gtest_main +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +#============================================================================= +# Target rules for targets named gtest + +# Build rule for target. +gtest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 gtest +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_py + +# Build rule for target. +roscpp_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_py +.PHONY : roscpp_generate_messages_py + +# fast build rule for target. +roscpp_generate_messages_py/fast: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build +.PHONY : roscpp_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_eus + +# Build rule for target. +roscpp_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_eus +.PHONY : roscpp_generate_messages_eus + +# fast build rule for target. +roscpp_generate_messages_eus/fast: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build +.PHONY : roscpp_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_lisp + +# Build rule for target. +roscpp_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_lisp +.PHONY : roscpp_generate_messages_lisp + +# fast build rule for target. +roscpp_generate_messages_lisp/fast: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build +.PHONY : roscpp_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_cpp + +# Build rule for target. +rosgraph_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_cpp +.PHONY : rosgraph_msgs_generate_messages_cpp + +# fast build rule for target. +rosgraph_msgs_generate_messages_cpp/fast: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build +.PHONY : rosgraph_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_lisp + +# Build rule for target. +std_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_lisp +.PHONY : std_msgs_generate_messages_lisp + +# fast build rule for target. +std_msgs_generate_messages_lisp/fast: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build +.PHONY : std_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_cpp + +# Build rule for target. +roscpp_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_cpp +.PHONY : roscpp_generate_messages_cpp + +# fast build rule for target. +roscpp_generate_messages_cpp/fast: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build +.PHONY : roscpp_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_eus + +# Build rule for target. +rosgraph_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_eus +.PHONY : rosgraph_msgs_generate_messages_eus + +# fast build rule for target. +rosgraph_msgs_generate_messages_eus/fast: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build +.PHONY : rosgraph_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_lisp + +# Build rule for target. +rosgraph_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_lisp +.PHONY : rosgraph_msgs_generate_messages_lisp + +# fast build rule for target. +rosgraph_msgs_generate_messages_lisp/fast: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build +.PHONY : rosgraph_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_cpp + +# Build rule for target. +std_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_cpp +.PHONY : std_msgs_generate_messages_cpp + +# fast build rule for target. +std_msgs_generate_messages_cpp/fast: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build +.PHONY : std_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_nodejs + +# Build rule for target. +rosgraph_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_nodejs +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# fast build rule for target. +rosgraph_msgs_generate_messages_nodejs/fast: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build +.PHONY : rosgraph_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named rosgraph_msgs_generate_messages_py + +# Build rule for target. +rosgraph_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 rosgraph_msgs_generate_messages_py +.PHONY : rosgraph_msgs_generate_messages_py + +# fast build rule for target. +rosgraph_msgs_generate_messages_py/fast: + $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build +.PHONY : rosgraph_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_eus + +# Build rule for target. +std_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_eus +.PHONY : std_msgs_generate_messages_eus + +# fast build rule for target. +std_msgs_generate_messages_eus/fast: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build +.PHONY : std_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_nodejs + +# Build rule for target. +std_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_nodejs +.PHONY : std_msgs_generate_messages_nodejs + +# fast build rule for target. +std_msgs_generate_messages_nodejs/fast: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build +.PHONY : std_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named roscpp_generate_messages_nodejs + +# Build rule for target. +roscpp_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 roscpp_generate_messages_nodejs +.PHONY : roscpp_generate_messages_nodejs + +# fast build rule for target. +roscpp_generate_messages_nodejs/fast: + $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build +.PHONY : roscpp_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named std_msgs_generate_messages_py + +# Build rule for target. +std_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_msgs_generate_messages_py +.PHONY : std_msgs_generate_messages_py + +# fast build rule for target. +std_msgs_generate_messages_py/fast: + $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build +.PHONY : std_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_cpp + +# Build rule for target. +turtlesim_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_cpp +.PHONY : turtlesim_generate_messages_cpp + +# fast build rule for target. +turtlesim_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build +.PHONY : turtlesim_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_py + +# Build rule for target. +geometry_msgs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_py +.PHONY : geometry_msgs_generate_messages_py + +# fast build rule for target. +geometry_msgs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build +.PHONY : geometry_msgs_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named velocity_publisher + +# Build rule for target. +velocity_publisher: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 velocity_publisher +.PHONY : velocity_publisher + +# fast build rule for target. +velocity_publisher/fast: + $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/build +.PHONY : velocity_publisher/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_cpp + +# Build rule for target. +geometry_msgs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_cpp +.PHONY : geometry_msgs_generate_messages_cpp + +# fast build rule for target. +geometry_msgs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build +.PHONY : geometry_msgs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_py + +# Build rule for target. +turtlesim_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_py +.PHONY : turtlesim_generate_messages_py + +# fast build rule for target. +turtlesim_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build +.PHONY : turtlesim_generate_messages_py/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_nodejs + +# Build rule for target. +geometry_msgs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_nodejs +.PHONY : geometry_msgs_generate_messages_nodejs + +# fast build rule for target. +geometry_msgs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build +.PHONY : geometry_msgs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_lisp + +# Build rule for target. +turtlesim_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_lisp +.PHONY : turtlesim_generate_messages_lisp + +# fast build rule for target. +turtlesim_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build +.PHONY : turtlesim_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_cpp + +# Build rule for target. +std_srvs_generate_messages_cpp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_cpp +.PHONY : std_srvs_generate_messages_cpp + +# fast build rule for target. +std_srvs_generate_messages_cpp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build +.PHONY : std_srvs_generate_messages_cpp/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_eus + +# Build rule for target. +geometry_msgs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_eus +.PHONY : geometry_msgs_generate_messages_eus + +# fast build rule for target. +geometry_msgs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build +.PHONY : geometry_msgs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_nodejs + +# Build rule for target. +turtlesim_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_nodejs +.PHONY : turtlesim_generate_messages_nodejs + +# fast build rule for target. +turtlesim_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build +.PHONY : turtlesim_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named geometry_msgs_generate_messages_lisp + +# Build rule for target. +geometry_msgs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 geometry_msgs_generate_messages_lisp +.PHONY : geometry_msgs_generate_messages_lisp + +# fast build rule for target. +geometry_msgs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build +.PHONY : geometry_msgs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_eus + +# Build rule for target. +std_srvs_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_eus +.PHONY : std_srvs_generate_messages_eus + +# fast build rule for target. +std_srvs_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build +.PHONY : std_srvs_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_lisp + +# Build rule for target. +std_srvs_generate_messages_lisp: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_lisp +.PHONY : std_srvs_generate_messages_lisp + +# fast build rule for target. +std_srvs_generate_messages_lisp/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build +.PHONY : std_srvs_generate_messages_lisp/fast + +#============================================================================= +# Target rules for targets named turtlesim_generate_messages_eus + +# Build rule for target. +turtlesim_generate_messages_eus: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 turtlesim_generate_messages_eus +.PHONY : turtlesim_generate_messages_eus + +# fast build rule for target. +turtlesim_generate_messages_eus/fast: + $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build +.PHONY : turtlesim_generate_messages_eus/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_nodejs + +# Build rule for target. +std_srvs_generate_messages_nodejs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_nodejs +.PHONY : std_srvs_generate_messages_nodejs + +# fast build rule for target. +std_srvs_generate_messages_nodejs/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build +.PHONY : std_srvs_generate_messages_nodejs/fast + +#============================================================================= +# Target rules for targets named std_srvs_generate_messages_py + +# Build rule for target. +std_srvs_generate_messages_py: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 std_srvs_generate_messages_py +.PHONY : std_srvs_generate_messages_py + +# fast build rule for target. +std_srvs_generate_messages_py/fast: + $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build +.PHONY : std_srvs_generate_messages_py/fast + +# 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" + @echo "... list_install_components" + @echo "... tests" + @echo "... rebuild_cache" + @echo "... download_extra_data" + @echo "... edit_cache" + @echo "... run_tests" + @echo "... clean_test_results" + @echo "... doxygen" + @echo "... install/local" + @echo "... test" + @echo "... gmock_main" + @echo "... gmock" + @echo "... gtest_main" + @echo "... gtest" + @echo "... roscpp_generate_messages_py" + @echo "... roscpp_generate_messages_eus" + @echo "... roscpp_generate_messages_lisp" + @echo "... rosgraph_msgs_generate_messages_cpp" + @echo "... std_msgs_generate_messages_lisp" + @echo "... roscpp_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_eus" + @echo "... rosgraph_msgs_generate_messages_lisp" + @echo "... std_msgs_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_py" + @echo "... std_msgs_generate_messages_eus" + @echo "... std_msgs_generate_messages_nodejs" + @echo "... roscpp_generate_messages_nodejs" + @echo "... std_msgs_generate_messages_py" + @echo "... turtlesim_generate_messages_cpp" + @echo "... geometry_msgs_generate_messages_py" + @echo "... velocity_publisher" + @echo "... geometry_msgs_generate_messages_cpp" + @echo "... turtlesim_generate_messages_py" + @echo "... geometry_msgs_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_lisp" + @echo "... std_srvs_generate_messages_cpp" + @echo "... geometry_msgs_generate_messages_eus" + @echo "... turtlesim_generate_messages_nodejs" + @echo "... geometry_msgs_generate_messages_lisp" + @echo "... std_srvs_generate_messages_eus" + @echo "... std_srvs_generate_messages_lisp" + @echo "... turtlesim_generate_messages_eus" + @echo "... std_srvs_generate_messages_nodejs" + @echo "... std_srvs_generate_messages_py" +.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/atomic_configure/.rosinstall b/Basics/test_ws/build/atomic_configure/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..e2a4cb96b1dee4ac62ca2f5162f4cc3edfe99186 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/test_ws/devel/setup.sh diff --git a/Basics/test_ws/build/atomic_configure/_setup_util.py b/Basics/test_ws/build/atomic_configure/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/test_ws/build/atomic_configure/env.sh b/Basics/test_ws/build/atomic_configure/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/test_ws/build/atomic_configure/local_setup.bash b/Basics/test_ws/build/atomic_configure/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/test_ws/build/atomic_configure/local_setup.sh b/Basics/test_ws/build/atomic_configure/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..87ebe4ff7e289f266f90f0b991b70f9ebc610b74 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/devel} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/test_ws/build/atomic_configure/local_setup.zsh b/Basics/test_ws/build/atomic_configure/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/test_ws/build/atomic_configure/setup.bash b/Basics/test_ws/build/atomic_configure/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/test_ws/build/atomic_configure/setup.sh b/Basics/test_ws/build/atomic_configure/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..de08d035f285e611f23325e26e798cae7c45bc11 --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/devel} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/test_ws/build/atomic_configure/setup.zsh b/Basics/test_ws/build/atomic_configure/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/test_ws/build/atomic_configure/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/test_ws/build/catkin/catkin_generated/version/package.cmake b/Basics/test_ws/build/catkin/catkin_generated/version/package.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3e52286e4b786cdb7d535b4277fb060ff4415ddf --- /dev/null +++ b/Basics/test_ws/build/catkin/catkin_generated/version/package.cmake @@ -0,0 +1,24 @@ +set(_CATKIN_CURRENT_PACKAGE "catkin") +set(catkin_VERSION "0.7.29") +set(catkin_MAINTAINER "Dirk Thomas ") +set(catkin_PACKAGE_FORMAT "3") +set(catkin_BUILD_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_BUILD_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_EXPORT_DEPENDS "google-mock" "gtest" "python-nose" "python3-nose" "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_BUILD_EXPORT_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILD_EXPORT_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_BUILDTOOL_DEPENDS "cmake" "python-setuptools" "python3-setuptools") +set(catkin_BUILDTOOL_EXPORT_DEPENDS "cmake" "python3-setuptools") +set(catkin_EXEC_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy") +set(catkin_EXEC_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_EXEC_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_RUN_DEPENDS "python-argparse" "python-catkin-pkg" "python3-catkin-pkg" "python-empy" "python3-empy" "google-mock" "gtest" "python-nose" "python3-nose") +set(catkin_RUN_DEPENDS_python-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_RUN_DEPENDS_python3-catkin-pkg_VERSION_GT "0.4.3") +set(catkin_TEST_DEPENDS "python-mock" "python3-mock" "python-nose" "python3-nose") +set(catkin_DOC_DEPENDS ) +set(catkin_URL_WEBSITE "http://wiki.ros.org/catkin") +set(catkin_URL_BUGTRACKER "https://github.com/ros/catkin/issues") +set(catkin_URL_REPOSITORY "https://github.com/ros/catkin") +set(catkin_DEPRECATED "") \ No newline at end of file diff --git a/Basics/test_ws/build/catkin_generated/env_cached.sh b/Basics/test_ws/build/catkin_generated/env_cached.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6be91db5c97c428f17b165713d3f9a077c78786 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/env_cached.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup_cached.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup_cached.sh" +exec "$@" diff --git a/Basics/test_ws/build/catkin_generated/generate_cached_setup.py b/Basics/test_ws/build/catkin_generated/generate_cached_setup.py new file mode 100644 index 0000000000000000000000000000000000000000..33446c5b2574646871585f5f4c4dbb4777fb1f1d --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/generate_cached_setup.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +from __future__ import print_function + +import os +import stat +import sys + +# find the import for catkin's python package - either from source space or from an installed underlay +if os.path.exists(os.path.join('/opt/ros/melodic/share/catkin/cmake', 'catkinConfig.cmake.in')): + sys.path.insert(0, os.path.join('/opt/ros/melodic/share/catkin/cmake', '..', 'python')) +try: + from catkin.environment_cache import generate_environment_script +except ImportError: + # search for catkin package in all workspaces and prepend to path + for workspace in '/opt/ros/melodic'.split(';'): + python_path = os.path.join(workspace, 'lib/python2.7/dist-packages') + if os.path.isdir(os.path.join(python_path, 'catkin')): + sys.path.insert(0, python_path) + break + from catkin.environment_cache import generate_environment_script + +code = generate_environment_script('/home/hazyparker/project/learn_ros/Basics/test_ws/devel/env.sh') + +output_filename = '/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/setup_cached.sh' +with open(output_filename, 'w') as f: + # print('Generate script for cached setup "%s"' % output_filename) + f.write('\n'.join(code)) + +mode = os.stat(output_filename).st_mode +os.chmod(output_filename, mode | stat.S_IXUSR) diff --git a/Basics/test_ws/build/catkin_generated/installspace/.rosinstall b/Basics/test_ws/build/catkin_generated/installspace/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..27a6ab9ed0387a70e004ad3e85d7d8f412aa3b2b --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.sh diff --git a/Basics/test_ws/build/catkin_generated/installspace/_setup_util.py b/Basics/test_ws/build/catkin_generated/installspace/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/test_ws/build/catkin_generated/installspace/env.sh b/Basics/test_ws/build/catkin_generated/installspace/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/test_ws/build/catkin_generated/installspace/local_setup.bash b/Basics/test_ws/build/catkin_generated/installspace/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/test_ws/build/catkin_generated/installspace/local_setup.sh b/Basics/test_ws/build/catkin_generated/installspace/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..5f84ec3d24388dbb90f94bc120fcd8898c61c8aa --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/install} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/test_ws/build/catkin_generated/installspace/local_setup.zsh b/Basics/test_ws/build/catkin_generated/installspace/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/test_ws/build/catkin_generated/installspace/setup.bash b/Basics/test_ws/build/catkin_generated/installspace/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/test_ws/build/catkin_generated/installspace/setup.sh b/Basics/test_ws/build/catkin_generated/installspace/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..6068e1ef0f0681316fe586b490603ad269516baf --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/install} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/test_ws/build/catkin_generated/installspace/setup.zsh b/Basics/test_ws/build/catkin_generated/installspace/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/installspace/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/test_ws/build/catkin_generated/order_packages.cmake b/Basics/test_ws/build/catkin_generated/order_packages.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8c623323ed2d19644d4ed8e3e10e2d5fcc709318 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/order_packages.cmake @@ -0,0 +1,18 @@ +# generated from catkin/cmake/em/order_packages.cmake.em + +set(CATKIN_ORDERED_PACKAGES "") +set(CATKIN_ORDERED_PACKAGE_PATHS "") +set(CATKIN_ORDERED_PACKAGES_IS_META "") +set(CATKIN_ORDERED_PACKAGES_BUILD_TYPE "") +list(APPEND CATKIN_ORDERED_PACKAGES "test_pkg") +list(APPEND CATKIN_ORDERED_PACKAGE_PATHS "test_pkg") +list(APPEND CATKIN_ORDERED_PACKAGES_IS_META "False") +list(APPEND CATKIN_ORDERED_PACKAGES_BUILD_TYPE "catkin") +list(APPEND CATKIN_ORDERED_PACKAGES "learning_topic") +list(APPEND CATKIN_ORDERED_PACKAGE_PATHS "learning_topic") +list(APPEND CATKIN_ORDERED_PACKAGES_IS_META "False") +list(APPEND CATKIN_ORDERED_PACKAGES_BUILD_TYPE "catkin") + +set(CATKIN_MESSAGE_GENERATORS ) + +set(CATKIN_METAPACKAGE_CMAKE_TEMPLATE "/usr/lib/python2.7/dist-packages/catkin_pkg/templates/metapackage.cmake.in") diff --git a/Basics/test_ws/build/catkin_generated/order_packages.py b/Basics/test_ws/build/catkin_generated/order_packages.py new file mode 100644 index 0000000000000000000000000000000000000000..4d5407f72a6f620c17941bebe377e82578f0b6d1 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/order_packages.py @@ -0,0 +1,5 @@ +# generated from catkin/cmake/template/order_packages.context.py.in +source_root_dir = '/home/hazyparker/project/learn_ros/Basics/test_ws/src' +whitelisted_packages = ''.split(';') if '' != '' else [] +blacklisted_packages = ''.split(';') if '' != '' else [] +underlay_workspaces = '/opt/ros/melodic'.split(';') if '/opt/ros/melodic' != '' else [] diff --git a/Basics/test_ws/build/catkin_generated/setup_cached.sh b/Basics/test_ws/build/catkin_generated/setup_cached.sh new file mode 100755 index 0000000000000000000000000000000000000000..62eccecc0e9c75f75552c6f5d96cdcc5b4aa4f09 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/setup_cached.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env sh +# generated from catkin/python/catkin/environment_cache.py + +# based on a snapshot of the environment before and after calling the setup script +# it emulates the modifications of the setup script without recurring computations + +# new environment variables + +# modified environment variables +export CMAKE_PREFIX_PATH="/home/hazyparker/project/learn_ros/Basics/test_ws/devel:$CMAKE_PREFIX_PATH" +export LD_LIBRARY_PATH="/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib:$LD_LIBRARY_PATH" +export PKG_CONFIG_PATH="/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/pkgconfig:$PKG_CONFIG_PATH" +export PWD='/home/hazyparker/project/learn_ros/Basics/test_ws/build' +export ROSLISP_PACKAGE_DIRECTORIES='/home/hazyparker/project/learn_ros/Basics/test_ws/devel/share/common-lisp' +export ROS_PACKAGE_PATH="/home/hazyparker/project/learn_ros/Basics/test_ws/src:$ROS_PACKAGE_PATH" \ No newline at end of file diff --git a/Basics/test_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp b/Basics/test_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/stamps/Project/_setup_util.py.stamp @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/test_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp b/Basics/test_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp new file mode 100644 index 0000000000000000000000000000000000000000..5e25fbf8a722c2eec099e7f19f8a67c184b33d4a --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/stamps/Project/interrogate_setup_dot_py.py.stamp @@ -0,0 +1,255 @@ +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +from __future__ import print_function + +import os +import runpy +import sys +from argparse import ArgumentParser + +setup_modules = [] + +try: + import distutils.core + setup_modules.append(distutils.core) +except ImportError: + pass + +try: + import setuptools + setup_modules.append(setuptools) +except ImportError: + pass + +assert setup_modules, 'Must have distutils or setuptools installed' + + +def _get_locations(pkgs, package_dir): + """ + Based on setuptools logic and the package_dir dict, builds a dict of location roots for each pkg in pkgs. + + See http://docs.python.org/distutils/setupscript.html + + :returns: a dict {pkgname: root} for each pkgname in pkgs (and each of their parents) + """ + # package_dir contains a dict {package_name: relativepath} + # Example {'': 'src', 'foo': 'lib', 'bar': 'lib2'} + # + # '' means where to look for any package unless a parent package + # is listed so package bar.pot is expected at lib2/bar/pot, + # whereas package sup.dee is expected at src/sup/dee + # + # if package_dir does not state anything about a package, + # setuptool expects the package folder to be in the root of the + # project + locations = {} + allprefix = package_dir.get('', '') + for pkg in pkgs: + parent_location = None + splits = pkg.split('.') + # we iterate over compound name from parent to child + # so once we found parent, children just append to their parent + for key_len in range(len(splits)): + key = '.'.join(splits[:key_len + 1]) + if key not in locations: + if key in package_dir: + locations[key] = package_dir[key] + elif parent_location is not None: + locations[key] = os.path.join(parent_location, splits[key_len]) + else: + locations[key] = os.path.join(allprefix, key) + parent_location = locations[key] + return locations + + +def generate_cmake_file(package_name, version, scripts, package_dir, pkgs, modules, setup_module=None): + """ + Generate lines to add to a cmake file which will set variables. + + :param version: str, format 'int.int.int' + :param scripts: [list of str]: relative paths to scripts + :param package_dir: {modulename: path} + :param pkgs: [list of str] python_packages declared in catkin package + :param modules: [list of str] python modules + :param setup_module: str, setuptools or distutils + """ + prefix = '%s_SETUP_PY' % package_name + result = [] + if setup_module: + result.append(r'set(%s_SETUP_MODULE "%s")' % (prefix, setup_module)) + result.append(r'set(%s_VERSION "%s")' % (prefix, version)) + result.append(r'set(%s_SCRIPTS "%s")' % (prefix, ';'.join(scripts))) + + # Remove packages with '.' separators. + # + # setuptools allows specifying submodules in other folders than + # their parent + # + # The symlink approach of catkin does not work with such submodules. + # In the common case, this does not matter as the submodule is + # within the containing module. We verify this assumption, and if + # it passes, we remove submodule packages. + locations = _get_locations(pkgs, package_dir) + for pkgname, location in locations.items(): + if '.' not in pkgname: + continue + splits = pkgname.split('.') + # hack: ignore write-combining setup.py files for msg and srv files + if splits[1] in ['msg', 'srv']: + continue + # check every child has the same root folder as its parent + root_name = splits[0] + root_location = location + for _ in range(len(splits) - 1): + root_location = os.path.dirname(root_location) + if root_location != locations[root_name]: + raise RuntimeError( + 'catkin_export_python does not support setup.py files that combine across multiple directories: %s in %s, %s in %s' % (pkgname, location, root_name, locations[root_name])) + + # If checks pass, remove all submodules + pkgs = [p for p in pkgs if '.' not in p] + + resolved_pkgs = [] + for pkg in pkgs: + resolved_pkgs += [locations[pkg]] + + result.append(r'set(%s_PACKAGES "%s")' % (prefix, ';'.join(pkgs))) + result.append(r'set(%s_PACKAGE_DIRS "%s")' % (prefix, ';'.join(resolved_pkgs).replace('\\', '/'))) + + # skip modules which collide with package names + filtered_modules = [] + for modname in modules: + splits = modname.split('.') + # check all parents too + equals_package = [('.'.join(splits[:-i]) in locations) for i in range(len(splits))] + if any(equals_package): + continue + filtered_modules.append(modname) + module_locations = _get_locations(filtered_modules, package_dir) + + result.append(r'set(%s_MODULES "%s")' % (prefix, ';'.join(['%s.py' % m.replace('.', '/') for m in filtered_modules]))) + result.append(r'set(%s_MODULE_DIRS "%s")' % (prefix, ';'.join([module_locations[m] for m in filtered_modules]).replace('\\', '/'))) + + return result + + +def _create_mock_setup_function(setup_module, package_name, outfile): + """ + Create a function to call instead of distutils.core.setup or setuptools.setup. + + It just captures some args and writes them into a file that can be used from cmake. + + :param package_name: name of the package + :param outfile: filename that cmake will use afterwards + :returns: a function to replace disutils.core.setup and setuptools.setup + """ + + def setup(*args, **kwargs): + """Check kwargs and write a scriptfile.""" + if 'version' not in kwargs: + sys.stderr.write("\n*** Unable to find 'version' in setup.py of %s\n" % package_name) + raise RuntimeError('version not found in setup.py') + version = kwargs['version'] + package_dir = kwargs.get('package_dir', {}) + + pkgs = kwargs.get('packages', []) + scripts = kwargs.get('scripts', []) + modules = kwargs.get('py_modules', []) + + unsupported_args = [ + 'entry_points', + 'exclude_package_data', + 'ext_modules ', + 'ext_package', + 'include_package_data', + 'namespace_packages', + 'setup_requires', + 'use_2to3', + 'zip_safe'] + used_unsupported_args = [arg for arg in unsupported_args if arg in kwargs] + if used_unsupported_args: + sys.stderr.write('*** Arguments %s to setup() not supported in catkin devel space in setup.py of %s\n' % (used_unsupported_args, package_name)) + + result = generate_cmake_file(package_name=package_name, + version=version, + scripts=scripts, + package_dir=package_dir, + pkgs=pkgs, + modules=modules, + setup_module=setup_module) + with open(outfile, 'w') as out: + out.write('\n'.join(result)) + + return setup + + +def main(): + """Script main, parses arguments and invokes Dummy.setup indirectly.""" + parser = ArgumentParser(description='Utility to read setup.py values from cmake macros. Creates a file with CMake set commands setting variables.') + parser.add_argument('package_name', help='Name of catkin package') + parser.add_argument('setupfile_path', help='Full path to setup.py') + parser.add_argument('outfile', help='Where to write result to') + + args = parser.parse_args() + + # print("%s" % sys.argv) + # PACKAGE_NAME = sys.argv[1] + # OUTFILE = sys.argv[3] + # print("Interrogating setup.py for package %s into %s " % (PACKAGE_NAME, OUTFILE), + # file=sys.stderr) + + # print("executing %s" % args.setupfile_path) + + # be sure you're in the directory containing + # setup.py so the sys.path manipulation works, + # so the import of __version__ works + os.chdir(os.path.dirname(os.path.abspath(args.setupfile_path))) + + # patch setup() function of distutils and setuptools for the + # context of evaluating setup.py + backup_modules = {} + try: + + for module in setup_modules: + backup_modules[id(module)] = module.setup + module.setup = _create_mock_setup_function( + setup_module=module.__name__, package_name=args.package_name, outfile=args.outfile) + + runpy.run_path(args.setupfile_path) + finally: + for module in setup_modules: + module.setup = backup_modules[id(module)] + + +if __name__ == '__main__': + main() diff --git a/Basics/test_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp b/Basics/test_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp new file mode 100644 index 0000000000000000000000000000000000000000..7ec7539aeb8d283237df74173efb822b3db9a467 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/stamps/Project/order_packages.cmake.em.stamp @@ -0,0 +1,70 @@ +# generated from catkin/cmake/em/order_packages.cmake.em +@{ +import os +try: + from catkin_pkg.cmake import get_metapackage_cmake_template_path +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.cmake import get_metapackage_cmake_template_path" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +try: + from catkin_pkg.topological_order import topological_order +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.topological_order import topological_order" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +try: + from catkin_pkg.package import InvalidPackage +except ImportError as e: + raise RuntimeError('ImportError: "from catkin_pkg.package import InvalidPackage" failed: %s\nMake sure that you have installed "catkin_pkg", it is up to date and on the PYTHONPATH.' % e) +# vars defined in order_packages.context.py.in +try: + ordered_packages = topological_order(os.path.normpath(source_root_dir), whitelisted=whitelisted_packages, blacklisted=blacklisted_packages, underlay_workspaces=underlay_workspaces) +except InvalidPackage as e: + print('message(FATAL_ERROR "%s")' % ('%s' % e).replace('"', '\\"')) + ordered_packages = [] +fatal_error = False +}@ + +set(CATKIN_ORDERED_PACKAGES "") +set(CATKIN_ORDERED_PACKAGE_PATHS "") +set(CATKIN_ORDERED_PACKAGES_IS_META "") +set(CATKIN_ORDERED_PACKAGES_BUILD_TYPE "") +@[for path, package in ordered_packages]@ +@[if path is None]@ +message(FATAL_ERROR "Circular dependency in subset of packages:\n@package") +@{ +fatal_error = True +}@ +@[elif package.name != 'catkin']@ +list(APPEND CATKIN_ORDERED_PACKAGES "@(package.name)") +list(APPEND CATKIN_ORDERED_PACKAGE_PATHS "@(path.replace('\\','/'))") +list(APPEND CATKIN_ORDERED_PACKAGES_IS_META "@(str('metapackage' in [e.tagname for e in package.exports]))") +@{ +package.evaluate_conditions(os.environ) +try: + build_type = package.get_build_type() +except InvalidPackage: + build_type = None +}@ +@[if build_type is None]@ +message(FATAL_ERROR "Only one element is permitted for package '@(package.name)'.") +@{ +fatal_error = True +}@ +@[else]@ +list(APPEND CATKIN_ORDERED_PACKAGES_BUILD_TYPE "@(package.get_build_type())") +@[end if]@ +@{ +deprecated = [e for e in package.exports if e.tagname == 'deprecated'] +}@ +@[if deprecated]@ +message("WARNING: Package '@(package.name)' is deprecated@(' (%s)' % deprecated[0].content if deprecated[0].content else '')") +@[end if]@ +@[end if]@ +@[end for]@ + +@[if not fatal_error]@ +@{ +message_generators = [package.name for (_, package) in ordered_packages if 'message_generator' in [e.tagname for e in package.exports]] +}@ +set(CATKIN_MESSAGE_GENERATORS @(' '.join(message_generators))) +@[end if]@ + +set(CATKIN_METAPACKAGE_CMAKE_TEMPLATE "@(get_metapackage_cmake_template_path().replace('\\','/'))") diff --git a/Basics/test_ws/build/catkin_generated/stamps/Project/package.xml.stamp b/Basics/test_ws/build/catkin_generated/stamps/Project/package.xml.stamp new file mode 100644 index 0000000000000000000000000000000000000000..9a1f675ed1b6593c5daab8c86b7ef272d3510a46 --- /dev/null +++ b/Basics/test_ws/build/catkin_generated/stamps/Project/package.xml.stamp @@ -0,0 +1,48 @@ + + + + catkin + 0.7.29 + Low-level build system macros and infrastructure for ROS. + Dirk Thomas + BSD + + http://wiki.ros.org/catkin + https://github.com/ros/catkin/issues + https://github.com/ros/catkin + + Troy Straszheim + Morten Kjaergaard + Brian Gerkey + Dirk Thomas + + python-argparse + python-catkin-pkg + python3-catkin-pkg + python-empy + python3-empy + + cmake + python-setuptools + python3-setuptools + + cmake + python3-setuptools + + google-mock + gtest + python-nose + python3-nose + + python-mock + python3-mock + python-nose + python3-nose + + + + + + diff --git a/Basics/test_ws/build/catkin_make.cache b/Basics/test_ws/build/catkin_make.cache new file mode 100644 index 0000000000000000000000000000000000000000..4c17dd842dfecae7f2f66be63eab43a7b4d2ef7b --- /dev/null +++ b/Basics/test_ws/build/catkin_make.cache @@ -0,0 +1,2 @@ +learning_topic:test_pkg +-DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCATKIN_DEVEL_PREFIX=/home/hazyparker/project/learn_ros/Basics/test_ws/devel -DCMAKE_INSTALL_PREFIX=/home/hazyparker/project/learn_ros/Basics/test_ws/install -G Unix Makefiles \ No newline at end of file diff --git a/Basics/test_ws/build/cmake_install.cmake b/Basics/test_ws/build/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a1d82f85452631011f9c2059f8cb884a55fe0e14 --- /dev/null +++ b/Basics/test_ws/build/cmake_install.cmake @@ -0,0 +1,148 @@ +# Install script for directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + + if (NOT EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") + file(MAKE_DIRECTORY "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") + endif() + if (NOT EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/.catkin") + file(WRITE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/.catkin" "") + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/_setup_util.py") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE PROGRAM FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/_setup_util.py") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/env.sh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE PROGRAM FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/env.sh") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.bash;/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.bash") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/setup.bash" + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/local_setup.bash" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.sh;/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.sh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/setup.sh" + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/local_setup.sh" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.zsh;/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.zsh") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/setup.zsh" + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/local_setup.zsh" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/install/.rosinstall") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() +file(INSTALL DESTINATION "/home/hazyparker/project/learn_ros/Basics/test_ws/install" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/build/catkin_generated/installspace/.rosinstall") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/cmake_install.cmake") + include("/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/cmake_install.cmake") + include("/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/hazyparker/project/learn_ros/Basics/test_ws/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Basics/test_ws/build/compile_commands.json b/Basics/test_ws/build/compile_commands.json new file mode 100644 index 0000000000000000000000000000000000000000..544baaf5d5ef9ad0bb60c55a657174d405f70fef --- /dev/null +++ b/Basics/test_ws/build/compile_commands.json @@ -0,0 +1,42 @@ +[ +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc", + "file": "/usr/src/googletest/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /usr/src/googletest/googlemock/src/gmock_main.cc", + "file": "/usr/src/googletest/googlemock/src/gmock_main.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc", + "file": "/usr/src/googletest/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_main_EXPORTS -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /usr/src/googletest/googletest/src/gtest_main.cc", + "file": "/usr/src/googletest/googletest/src/gtest_main.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest", + "command": "/usr/bin/c++ -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_EXPORTS -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc", + "file": "/usr/src/googletest/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic", + "command": "/usr/bin/c++ -DROSCONSOLE_BACKEND_LOG4CXX -DROS_BUILD_SHARED_LIBS=1 -DROS_PACKAGE_NAME=\\\"learning_topic\\\" -I/opt/ros/melodic/include -I/opt/ros/melodic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp -o CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp", + "file": "/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp" +} +] \ No newline at end of file diff --git a/Basics/test_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ea411b7e8e966a81d525171e7186271d49331eb --- /dev/null +++ b/Basics/test_ws/build/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/gtest/CMakeFiles/progress.marks b/Basics/test_ws/build/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/test_ws/build/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/test_ws/build/gtest/CTestTestfile.cmake b/Basics/test_ws/build/gtest/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..562cb039023184fdbc484f5a9d481c1ef9f4eedf --- /dev/null +++ b/Basics/test_ws/build/gtest/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("googlemock") diff --git a/Basics/test_ws/build/gtest/Makefile b/Basics/test_ws/build/gtest/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..a43f7198dccb2dbd5a3791743f0440383b9ac6ec --- /dev/null +++ b/Basics/test_ws/build/gtest/Makefile @@ -0,0 +1,196 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 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 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 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 + +# 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 rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(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 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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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 "... edit_cache" + @echo "... list_install_components" + @echo "... test" + @echo "... install/local" + @echo "... rebuild_cache" + @echo "... install" +.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: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/gtest/cmake_install.cmake b/Basics/test_ws/build/gtest/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1eaf59a960a2915a56debe56ec1890497998bd95 --- /dev/null +++ b/Basics/test_ws/build/gtest/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /usr/src/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/cmake_install.cmake") + +endif() + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ea411b7e8e966a81d525171e7186271d49331eb --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fb7492c81597c16e1a4a28e49151fa82201892f --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake @@ -0,0 +1,30 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock-all.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googlemock/include" + "/usr/src/googletest/googlemock" + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..27eed58d2cc162eb425e512544dc537042c4176f --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/build.make @@ -0,0 +1,140 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/CMakeFiles/gmock.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/CMakeFiles/gmock.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/CMakeFiles/gmock.dir/flags.make + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o: gtest/googlemock/CMakeFiles/gmock.dir/flags.make +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: gtest/googlemock/CMakeFiles/gmock.dir/flags.make +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: /usr/src/googletest/googlemock/src/gmock-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/src/gmock-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock-all.cc > CMakeFiles/gmock.dir/src/gmock-all.cc.i + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/src/gmock-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock-all.cc -o CMakeFiles/gmock.dir/src/gmock-all.cc.s + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o + + +# Object files for target gmock +gmock_OBJECTS = \ +"CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" \ +"CMakeFiles/gmock.dir/src/gmock-all.cc.o" + +# External object files for target gmock +gmock_EXTERNAL_OBJECTS = + +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/build.make +gtest/googlemock/libgmock.so: gtest/googlemock/CMakeFiles/gmock.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libgmock.so" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/CMakeFiles/gmock.dir/build: gtest/googlemock/libgmock.so + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/build + +gtest/googlemock/CMakeFiles/gmock.dir/requires: gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock.dir/requires: gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.requires + +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/requires + +gtest/googlemock/CMakeFiles/gmock.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/clean + +gtest/googlemock/CMakeFiles/gmock.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /usr/src/googletest/googlemock /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/depend + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..80ceb930926f2d103df9de5cc857ce4cb41e44d1 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o" + "CMakeFiles/gmock.dir/src/gmock-all.cc.o" + "libgmock.pdb" + "libgmock.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..7a05e2f1995722edd1ef296a9e722270b2f5bb3d --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..b568ee83dd8c880031c540f157f2889b2cd9fbff --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..b11c6309977b5fa46dd01dc3b7b8f4201500aa9a --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgmock.so -o libgmock.so CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o CMakeFiles/gmock.dir/src/gmock-all.cc.o -lpthread diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6a9dc74f48190611094be92ae37d081d83beb533 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cd73ef4b12b9a7f3855b59f41f4ee5b309250e88 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake @@ -0,0 +1,31 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock-all.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + "/usr/src/googletest/googlemock/src/gmock_main.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googlemock/include" + "/usr/src/googletest/googlemock" + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..762b5c51ab6fd4c3850e004abe9acf582c6e21a1 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make @@ -0,0 +1,167 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o: /usr/src/googletest/googlemock/src/gmock-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o -c /usr/src/googletest/googlemock/src/gmock-all.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock-all.cc > CMakeFiles/gmock_main.dir/src/gmock-all.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock-all.cc -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o + + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: /usr/src/googletest/googlemock/src/gmock_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /usr/src/googletest/googlemock/src/gmock_main.cc + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock_main.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googlemock/src/gmock_main.cc > CMakeFiles/gmock_main.dir/src/gmock_main.cc.i + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock_main.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googlemock/src/gmock_main.cc -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.s + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires: + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides.build +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides + +gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.provides.build: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o + + +# Object files for target gmock_main +gmock_main_OBJECTS = \ +"CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" \ +"CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" \ +"CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + +# External object files for target gmock_main +gmock_main_EXTERNAL_OBJECTS = + +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/build.make +gtest/googlemock/libgmock_main.so: gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX shared library libgmock_main.so" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/CMakeFiles/gmock_main.dir/build: gtest/googlemock/libgmock_main.so + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/build + +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o.requires +gtest/googlemock/CMakeFiles/gmock_main.dir/requires: gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.requires + +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/requires + +gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +gtest/googlemock/CMakeFiles/gmock_main.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /usr/src/googletest/googlemock /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/depend + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b05bbcad7080a5b0b03686856353a0aa67eb116c --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock-all.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + "libgmock_main.pdb" + "libgmock_main.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4a18b61b44c09e7c55e5cfcaedb4d5c068d9de16 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..564c3c2e378179147f861a51c6d9bbe720b856a2 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgmock_main_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googlemock/include -I/usr/src/googletest/googlemock -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c2714f77b4a431f35458e78c71e5a848b905cb6 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgmock_main.so -o libgmock_main.so CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -lpthread diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b78c19732f4ae57a653abec5d43b5631408518cd --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 +CMAKE_PROGRESS_3 = 6 +CMAKE_PROGRESS_4 = 7 + diff --git a/Basics/test_ws/build/gtest/googlemock/CMakeFiles/progress.marks b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/test_ws/build/gtest/googlemock/CTestTestfile.cmake b/Basics/test_ws/build/gtest/googlemock/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..772b28e2d683c9e1bf1ecc4f40b06ded99e0c6aa --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest/googlemock +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") diff --git a/Basics/test_ws/build/gtest/googlemock/Makefile b/Basics/test_ws/build/gtest/googlemock/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..8ec74fc63c45bd2c4c4ff75d8e1fe867e2cc640e --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/Makefile @@ -0,0 +1,324 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 +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 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 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 + +# 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 -H$(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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +gtest/googlemock/CMakeFiles/gmock_main.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +# Convenience name for target. +gtest/googlemock/CMakeFiles/gmock.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: gtest/googlemock/CMakeFiles/gmock.dir/rule + +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +__/googletest/src/gtest-all.o: __/googletest/src/gtest-all.cc.o + +.PHONY : __/googletest/src/gtest-all.o + +# target to build an object file +__/googletest/src/gtest-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o +.PHONY : __/googletest/src/gtest-all.cc.o + +__/googletest/src/gtest-all.i: __/googletest/src/gtest-all.cc.i + +.PHONY : __/googletest/src/gtest-all.i + +# target to preprocess a source file +__/googletest/src/gtest-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.i + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.i +.PHONY : __/googletest/src/gtest-all.cc.i + +__/googletest/src/gtest-all.s: __/googletest/src/gtest-all.cc.s + +.PHONY : __/googletest/src/gtest-all.s + +# target to generate assembly for a file +__/googletest/src/gtest-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.s + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.s +.PHONY : __/googletest/src/gtest-all.cc.s + +src/gmock-all.o: src/gmock-all.cc.o + +.PHONY : src/gmock-all.o + +# target to build an object file +src/gmock-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.o + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +.PHONY : src/gmock-all.cc.o + +src/gmock-all.i: src/gmock-all.cc.i + +.PHONY : src/gmock-all.i + +# target to preprocess a source file +src/gmock-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.i + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i +.PHONY : src/gmock-all.cc.i + +src/gmock-all.s: src/gmock-all.cc.s + +.PHONY : src/gmock-all.s + +# target to generate assembly for a file +src/gmock-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock-all.cc.s + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock.dir/build.make gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s +.PHONY : src/gmock-all.cc.s + +src/gmock_main.o: src/gmock_main.cc.o + +.PHONY : src/gmock_main.o + +# target to build an object file +src/gmock_main.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +.PHONY : src/gmock_main.cc.o + +src/gmock_main.i: src/gmock_main.cc.i + +.PHONY : src/gmock_main.i + +# target to preprocess a source file +src/gmock_main.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i +.PHONY : src/gmock_main.cc.i + +src/gmock_main.s: src/gmock_main.cc.s + +.PHONY : src/gmock_main.s + +# target to generate assembly for a file +src/gmock_main.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/CMakeFiles/gmock_main.dir/build.make gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s +.PHONY : src/gmock_main.cc.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" + @echo "... install/local" + @echo "... gmock_main" + @echo "... test" + @echo "... list_install_components" + @echo "... gmock" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... __/googletest/src/gtest-all.o" + @echo "... __/googletest/src/gtest-all.i" + @echo "... __/googletest/src/gtest-all.s" + @echo "... src/gmock-all.o" + @echo "... src/gmock-all.i" + @echo "... src/gmock-all.s" + @echo "... src/gmock_main.o" + @echo "... src/gmock_main.i" + @echo "... src/gmock_main.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: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/gtest/googlemock/cmake_install.cmake b/Basics/test_ws/build/gtest/googlemock/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8ad8a9d8696f64890cb67d7161bd22b4c922d740 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /usr/src/googletest/googlemock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/cmake_install.cmake") + +endif() + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ea411b7e8e966a81d525171e7186271d49331eb --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/usr/src/googletest") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..81e8f370eb0544e63dd278d2afffb239ee420e58 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake @@ -0,0 +1,27 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest-all.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..205e9f0ce4495a3880a8538ae64d6316289e2758 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make @@ -0,0 +1,113 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: /usr/src/googletest/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /usr/src/googletest/googletest/src/gtest-all.cc + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest.dir/src/gtest-all.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest-all.cc > CMakeFiles/gtest.dir/src/gtest-all.cc.i + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest.dir/src/gtest-all.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest-all.cc -o CMakeFiles/gtest.dir/src/gtest-all.cc.s + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires: + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides.build +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.provides.build: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o + + +# Object files for target gtest +gtest_OBJECTS = \ +"CMakeFiles/gtest.dir/src/gtest-all.cc.o" + +# External object files for target gtest +gtest_EXTERNAL_OBJECTS = + +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make +gtest/googlemock/gtest/libgtest.so: gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libgtest.so" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/build: gtest/googlemock/gtest/libgtest.so + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/requires: gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.requires + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/requires + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /usr/src/googletest/googletest /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3fcee237269ffb3fa8b2b5bb0c5f865266a2fe0e --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest.dir/src/gtest-all.cc.o" + "libgtest.pdb" + "libgtest.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..37ac348dbdee84ac90462c82dae3a4f7ca757dc1 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest. +# This may be replaced when dependencies are built. diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..65dc7cad1a9f0c167731ef6812c84f308db3a274 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c7e283e5c750f335fea17f77ea3156b5e7fb7fb --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgtest.so -o libgtest.so CMakeFiles/gtest.dir/src/gtest-all.cc.o -L/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/src -Wl,-rpath,/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/src -lpthread diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..895faac227d8e6c3c5be24b8edcae9c3c7edfcb5 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 8 +CMAKE_PROGRESS_2 = 9 + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a4bcbf46ad7fea6c2107ded39f09449331b1f02b --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake @@ -0,0 +1,28 @@ +# 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 + "/usr/src/googletest/googletest/src/gtest_main.cc" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "GTEST_CREATE_SHARED_LIBRARY=1" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/src/googletest/googletest/include" + "/usr/src/googletest/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..584dce0e50df5f872bb7a6411e2ab4fdacdd3bb4 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Include any dependencies generated for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make + +# Include the progress variables for this target. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make + +# Include the compile flags for this target's objects. +include gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: /usr/src/googletest/googletest/src/gtest_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /usr/src/googletest/googletest/src/gtest_main.cc + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest_main.dir/src/gtest_main.cc.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/src/googletest/googletest/src/gtest_main.cc > CMakeFiles/gtest_main.dir/src/gtest_main.cc.i + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest_main.dir/src/gtest_main.cc.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/src/googletest/googletest/src/gtest_main.cc -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.s + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires: + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides.build +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.provides.build: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o + + +# Object files for target gtest_main +gtest_main_OBJECTS = \ +"CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + +# External object files for target gtest_main +gtest_main_EXTERNAL_OBJECTS = + +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/libgtest.so +gtest/googlemock/gtest/libgtest_main.so: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libgtest_main.so" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build: gtest/googlemock/gtest/libgtest_main.so + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/requires: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.requires + +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/requires + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean.cmake +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /usr/src/googletest/googletest /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..24048f35a317d8fa438e6cfb678bf8b0a7200b8f --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + "libgtest_main.pdb" + "libgtest_main.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..1d67c1ab524a35ba28518428e16051e4728c8c11 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest_main. +# This may be replaced when dependencies are built. diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..da6a521bedce11c9cc933ba81dd274826cebb7c2 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers + +CXX_DEFINES = -DGTEST_CREATE_SHARED_LIBRARY=1 -Dgtest_main_EXPORTS + +CXX_INCLUDES = -I/usr/src/googletest/googletest/include -I/usr/src/googletest/googletest + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea187dc335306ee90dad4ed52f490d238a4b852f --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libgtest_main.so -o libgtest_main.so CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -L/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/src -Wl,-rpath,/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/src:/home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest -lpthread libgtest.so -lpthread diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..17875e3238da3ecdefe39c6875b6b441dc576689 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 10 +CMAKE_PROGRESS_2 = 11 + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c4b8fe5940c00028992bc0a7bc79812f68f674c1 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /usr/src/googletest/googletest +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/Makefile b/Basics/test_ws/build/gtest/googlemock/gtest/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..dd05976c7a4b95b547b0196bf0849c916f363ae9 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/Makefile @@ -0,0 +1,288 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 +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 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 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 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 + +# 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 -H$(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 + +# The main all target +all: cmake_check_build_system + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/gtest/googlemock/gtest/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +# Convenience name for target. +gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +src/gtest-all.o: src/gtest-all.cc.o + +.PHONY : src/gtest-all.o + +# target to build an object file +src/gtest-all.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +.PHONY : src/gtest-all.cc.o + +src/gtest-all.i: src/gtest-all.cc.i + +.PHONY : src/gtest-all.i + +# target to preprocess a source file +src/gtest-all.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i +.PHONY : src/gtest-all.cc.i + +src/gtest-all.s: src/gtest-all.cc.s + +.PHONY : src/gtest-all.s + +# target to generate assembly for a file +src/gtest-all.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s +.PHONY : src/gtest-all.cc.s + +src/gtest_main.o: src/gtest_main.cc.o + +.PHONY : src/gtest_main.o + +# target to build an object file +src/gtest_main.cc.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +.PHONY : src/gtest_main.cc.o + +src/gtest_main.i: src/gtest_main.cc.i + +.PHONY : src/gtest_main.i + +# target to preprocess a source file +src/gtest_main.cc.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i +.PHONY : src/gtest_main.cc.i + +src/gtest_main.s: src/gtest_main.cc.s + +.PHONY : src/gtest_main.s + +# target to generate assembly for a file +src/gtest_main.cc.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s +.PHONY : src/gtest_main.cc.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" + @echo "... edit_cache" + @echo "... install/local" + @echo "... test" + @echo "... gtest_main" + @echo "... list_install_components" + @echo "... gtest" + @echo "... rebuild_cache" + @echo "... src/gtest-all.o" + @echo "... src/gtest-all.i" + @echo "... src/gtest-all.s" + @echo "... src/gtest_main.o" + @echo "... src/gtest_main.i" + @echo "... src/gtest_main.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: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/gtest/googlemock/gtest/cmake_install.cmake b/Basics/test_ws/build/gtest/googlemock/gtest/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..728fd2d88404073c701c070856253f09790def05 --- /dev/null +++ b/Basics/test_ws/build/gtest/googlemock/gtest/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /usr/src/googletest/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/Basics/test_ws/build/install_manifest.txt b/Basics/test_ws/build/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..d26f8d01d127105bba352636f3b7bf013a7de34c --- /dev/null +++ b/Basics/test_ws/build/install_manifest.txt @@ -0,0 +1,9 @@ +/home/hazyparker/project/learn_ros/Basics/test_ws/install/_setup_util.py +/home/hazyparker/project/learn_ros/Basics/test_ws/install/env.sh +/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.bash +/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.bash +/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.sh +/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.sh +/home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.zsh +/home/hazyparker/project/learn_ros/Basics/test_ws/install/local_setup.zsh +/home/hazyparker/project/learn_ros/Basics/test_ws/install/.rosinstall \ No newline at end of file diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b0fbfa0b0277b364d8eb22761eae59dcbbbde599 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hazyparker/project/learn_ros/Basics/test_ws/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c7f638a17beefd376a4374857b5e359cba918318 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for geometry_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make + +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make + +.PHONY : geometry_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build: geometry_msgs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..820ac958f43c6eebf66f6d6d990cc6f9ee92bdee --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ef8e7e69dce56fc2188596951ed7e1059de0913e --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for geometry_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make + +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make + +.PHONY : geometry_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build: geometry_msgs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..67f285a2b286be7fc34e84068b61e34e06956953 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6c19ec8531224e1122e6487158a7f4384aef1d55 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for geometry_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make + +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make + +.PHONY : geometry_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build: geometry_msgs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1e1c8fa8835a35da1844bebfcf48761dffbbb744 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7d75e9da8cc3598cb30879e03c551b8d617c31cf --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for geometry_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make + +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : geometry_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build: geometry_msgs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a10d1c0a7d1c206f0b4fa6bad096f015b45ac47e --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..40a6d18030315d8f7226c0896cf945289e852708 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for geometry_msgs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make + +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make + +.PHONY : geometry_msgs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build: geometry_msgs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37b46276801d2babea1a13a48a7cfd37a2e3ef6c --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/progress.marks b/Basics/test_ws/build/learning_topic/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..24709a338be1b4eec13802517da8c9009de9aa06 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_srvs_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make + +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make + +.PHONY : std_srvs_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build: std_srvs_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c3ab691ca5352a49079c42e41b476fefbbeefa85 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2670c824e54d7fd41496238d28c2834c1cf969e1 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_srvs_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make + +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make + +.PHONY : std_srvs_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build: std_srvs_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..32929d8d2b244c1192b1b838f915ca323d50be7e --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c2a18e7ed20e862ab453ca57afa370ec12cba676 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_srvs_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make + +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make + +.PHONY : std_srvs_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build: std_srvs_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c9d1c7885c2d7b5689548d698aa732a8aefc384 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8a8247c424f02be2b7d2bb032def9494d5d96b33 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_srvs_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make + +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make + +.PHONY : std_srvs_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build: std_srvs_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3550ddd7594bcf5cada332ec49a3ff4e54ddb201 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8fbbf07a902b352d02ba8cffbee505a498d0d038 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_srvs_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make + +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make + +.PHONY : std_srvs_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build: std_srvs_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build + +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..093ce8c796096144546c07bbfcb125910851da61 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_srvs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..32bd6d6c1341e85ba6d01fdc9f0dca5a968ad39b --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for turtlesim_generate_messages_cpp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make + +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make + +.PHONY : turtlesim_generate_messages_cpp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build: turtlesim_generate_messages_cpp + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..261a3272df46b73eb413f6624dd598277b044ecf --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..49e0be232592e8d6af4d53113ea2118baa38852c --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for turtlesim_generate_messages_eus. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make + +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make + +.PHONY : turtlesim_generate_messages_eus + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build: turtlesim_generate_messages_eus + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a2907b1cbf6571230230fdbd8cf6b2132611d6a7 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1b89699ed30129a6066fa1c3b39aa67f63c858ad --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for turtlesim_generate_messages_lisp. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make + +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make + +.PHONY : turtlesim_generate_messages_lisp + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build: turtlesim_generate_messages_lisp + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a28e8844c677b0030f70e8cc1bf18c87348d0b48 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ce2e9920da8c03feccf39c6a01b740c70b91d92b --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for turtlesim_generate_messages_nodejs. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make + +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make + +.PHONY : turtlesim_generate_messages_nodejs + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build: turtlesim_generate_messages_nodejs + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8e4c002f01c765322e63765b48e039440730c176 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6efafeaf76ced886d2eeca376d9708a7f5a3f1e9 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for turtlesim_generate_messages_py. + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make + +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make + +.PHONY : turtlesim_generate_messages_py + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build: turtlesim_generate_messages_py + +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build + +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/clean + +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3bad896eeaacf05d827a26a43d64ba29b0d23c01 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/turtlesim_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/CXX.includecache b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/CXX.includecache new file mode 100644 index 0000000000000000000000000000000000000000..0c7a23185e1e73485a704f5711248955f16da864 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/CXX.includecache @@ -0,0 +1,670 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp +ros/ros.h +- + +/opt/ros/melodic/include/ros/advertise_options.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/advertise_service_options.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/service_callback_helper.h +/opt/ros/melodic/include/ros/ros/service_callback_helper.h +ros/service_traits.h +/opt/ros/melodic/include/ros/ros/service_traits.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/assert.h +ros/console.h +/opt/ros/melodic/include/ros/ros/console.h +ros/static_assert.h +/opt/ros/melodic/include/ros/ros/static_assert.h +ros/platform.h +- +stdlib.h +- + +/opt/ros/melodic/include/ros/builtin_message_traits.h +message_traits.h +/opt/ros/melodic/include/ros/message_traits.h +ros/time.h +/opt/ros/melodic/include/ros/ros/time.h + +/opt/ros/melodic/include/ros/common.h +stdint.h +- +assert.h +- +stddef.h +- +string +- +ros/assert.h +/opt/ros/melodic/include/ros/ros/assert.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/serialized_message.h +/opt/ros/melodic/include/ros/ros/serialized_message.h +boost/shared_array.hpp +- +ros/macros.h +- + +/opt/ros/melodic/include/ros/console.h +console_backend.h +/opt/ros/melodic/include/ros/console_backend.h +cstdio +- +sstream +- +ros/time.h +- +cstdarg +- +ros/macros.h +- +map +- +vector +- +log4cxx/level.h +/opt/ros/melodic/include/ros/log4cxx/level.h +rosconsole/macros_generated.h +/opt/ros/melodic/include/ros/rosconsole/macros_generated.h + +/opt/ros/melodic/include/ros/console_backend.h +ros/macros.h +- + +/opt/ros/melodic/include/ros/datatypes.h +string +- +vector +- +map +- +set +- +list +- +boost/shared_ptr.hpp +- + +/opt/ros/melodic/include/ros/duration.h +iostream +- +math.h +- +stdexcept +- +climits +- +stdint.h +- +rostime_decl.h +/opt/ros/melodic/include/ros/rostime_decl.h + +/opt/ros/melodic/include/ros/exception.h +stdexcept +- + +/opt/ros/melodic/include/ros/exceptions.h +ros/exception.h +- + +/opt/ros/melodic/include/ros/forwards.h +string +- +vector +- +map +- +set +- +list +- +boost/shared_ptr.hpp +- +boost/make_shared.hpp +- +boost/weak_ptr.hpp +- +boost/function.hpp +- +ros/time.h +- +ros/macros.h +- +exceptions.h +/opt/ros/melodic/include/ros/exceptions.h +ros/datatypes.h +/opt/ros/melodic/include/ros/ros/datatypes.h + +/opt/ros/melodic/include/ros/init.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/spinner.h +/opt/ros/melodic/include/ros/ros/spinner.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/macros.h + +/opt/ros/melodic/include/ros/master.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +xmlrpcpp/XmlRpcValue.h +/opt/ros/melodic/include/ros/xmlrpcpp/XmlRpcValue.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/message.h +ros/macros.h +/opt/ros/melodic/include/ros/ros/macros.h +ros/assert.h +/opt/ros/melodic/include/ros/ros/assert.h +string +- +string.h +- +boost/shared_ptr.hpp +- +boost/array.hpp +- +stdint.h +- + +/opt/ros/melodic/include/ros/message_event.h +ros/time.h +/opt/ros/melodic/include/ros/ros/time.h +ros/datatypes.h +- +ros/message_traits.h +- +boost/type_traits/is_void.hpp +- +boost/type_traits/is_base_of.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/utility/enable_if.hpp +- +boost/function.hpp +- +boost/make_shared.hpp +- + +/opt/ros/melodic/include/ros/message_forward.h +cstddef +- +memory +- + +/opt/ros/melodic/include/ros/message_traits.h +message_forward.h +/opt/ros/melodic/include/ros/message_forward.h +ros/time.h +- +string +- +boost/utility/enable_if.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- + +/opt/ros/melodic/include/ros/names.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/node_handle.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/publisher.h +/opt/ros/melodic/include/ros/ros/publisher.h +ros/subscriber.h +/opt/ros/melodic/include/ros/ros/subscriber.h +ros/service_server.h +/opt/ros/melodic/include/ros/ros/service_server.h +ros/service_client.h +/opt/ros/melodic/include/ros/ros/service_client.h +ros/timer.h +/opt/ros/melodic/include/ros/ros/timer.h +ros/rate.h +/opt/ros/melodic/include/ros/ros/rate.h +ros/wall_timer.h +/opt/ros/melodic/include/ros/ros/wall_timer.h +ros/steady_timer.h +/opt/ros/melodic/include/ros/ros/steady_timer.h +ros/advertise_options.h +/opt/ros/melodic/include/ros/ros/advertise_options.h +ros/advertise_service_options.h +/opt/ros/melodic/include/ros/ros/advertise_service_options.h +ros/subscribe_options.h +/opt/ros/melodic/include/ros/ros/subscribe_options.h +ros/service_client_options.h +/opt/ros/melodic/include/ros/ros/service_client_options.h +ros/timer_options.h +/opt/ros/melodic/include/ros/ros/timer_options.h +ros/wall_timer_options.h +/opt/ros/melodic/include/ros/ros/wall_timer_options.h +ros/spinner.h +/opt/ros/melodic/include/ros/ros/spinner.h +ros/init.h +/opt/ros/melodic/include/ros/ros/init.h +common.h +/opt/ros/melodic/include/ros/common.h +boost/bind.hpp +- +xmlrpcpp/XmlRpcValue.h +- + +/opt/ros/melodic/include/ros/param.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +common.h +/opt/ros/melodic/include/ros/common.h +xmlrpcpp/XmlRpcValue.h +/opt/ros/melodic/include/ros/xmlrpcpp/XmlRpcValue.h +vector +- +map +- + +/opt/ros/melodic/include/ros/parameter_adapter.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/message_event.h +/opt/ros/melodic/include/ros/ros/message_event.h +ros/static_assert.h +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- + +/opt/ros/melodic/include/ros/platform.h +stdlib.h +- +string +- + +/opt/ros/melodic/include/ros/publisher.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/melodic/include/ros/ros/common.h +ros/message.h +/opt/ros/melodic/include/ros/ros/message.h +ros/serialization.h +/opt/ros/melodic/include/ros/ros/serialization.h +boost/bind.hpp +- + +/opt/ros/melodic/include/ros/rate.h +ros/time.h +/opt/ros/melodic/include/ros/ros/time.h +rostime_decl.h +/opt/ros/melodic/include/ros/rostime_decl.h + +/opt/ros/melodic/include/ros/ros.h +ros/time.h +/opt/ros/melodic/include/ros/ros/time.h +ros/rate.h +/opt/ros/melodic/include/ros/ros/rate.h +ros/console.h +/opt/ros/melodic/include/ros/ros/console.h +ros/assert.h +/opt/ros/melodic/include/ros/ros/assert.h +ros/common.h +/opt/ros/melodic/include/ros/ros/common.h +ros/types.h +/opt/ros/melodic/include/ros/ros/types.h +ros/node_handle.h +/opt/ros/melodic/include/ros/ros/node_handle.h +ros/publisher.h +/opt/ros/melodic/include/ros/ros/publisher.h +ros/single_subscriber_publisher.h +/opt/ros/melodic/include/ros/ros/single_subscriber_publisher.h +ros/service_server.h +/opt/ros/melodic/include/ros/ros/service_server.h +ros/subscriber.h +/opt/ros/melodic/include/ros/ros/subscriber.h +ros/service.h +/opt/ros/melodic/include/ros/ros/service.h +ros/init.h +/opt/ros/melodic/include/ros/ros/init.h +ros/master.h +/opt/ros/melodic/include/ros/ros/master.h +ros/this_node.h +/opt/ros/melodic/include/ros/ros/this_node.h +ros/param.h +/opt/ros/melodic/include/ros/ros/param.h +ros/topic.h +/opt/ros/melodic/include/ros/ros/topic.h +ros/names.h +/opt/ros/melodic/include/ros/ros/names.h + +/opt/ros/melodic/include/ros/roscpp_serialization_macros.h +ros/macros.h +- + +/opt/ros/melodic/include/ros/rostime_decl.h +ros/macros.h +- + +/opt/ros/melodic/include/ros/serialization.h +roscpp_serialization_macros.h +/opt/ros/melodic/include/ros/roscpp_serialization_macros.h +ros/types.h +- +ros/time.h +- +serialized_message.h +/opt/ros/melodic/include/ros/serialized_message.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +ros/builtin_message_traits.h +/opt/ros/melodic/include/ros/ros/builtin_message_traits.h +ros/exception.h +/opt/ros/melodic/include/ros/ros/exception.h +ros/datatypes.h +/opt/ros/melodic/include/ros/ros/datatypes.h +vector +- +map +- +boost/array.hpp +- +boost/call_traits.hpp +- +boost/utility/enable_if.hpp +- +boost/mpl/and.hpp +- +boost/mpl/or.hpp +- +boost/mpl/not.hpp +- +cstring +- + +/opt/ros/melodic/include/ros/serialized_message.h +roscpp_serialization_macros.h +/opt/ros/melodic/include/ros/roscpp_serialization_macros.h +boost/shared_array.hpp +- +boost/shared_ptr.hpp +- + +/opt/ros/melodic/include/ros/service.h +string +- +ros/common.h +/opt/ros/melodic/include/ros/ros/common.h +ros/message.h +/opt/ros/melodic/include/ros/ros/message.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/node_handle.h +/opt/ros/melodic/include/ros/ros/node_handle.h +ros/service_traits.h +/opt/ros/melodic/include/ros/ros/service_traits.h +ros/names.h +/opt/ros/melodic/include/ros/ros/names.h +boost/shared_ptr.hpp +- + +/opt/ros/melodic/include/ros/service_callback_helper.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/melodic/include/ros/ros/common.h +ros/message.h +/opt/ros/melodic/include/ros/ros/message.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +ros/service_traits.h +/opt/ros/melodic/include/ros/ros/service_traits.h +ros/serialization.h +/opt/ros/melodic/include/ros/ros/serialization.h +boost/type_traits/is_base_of.hpp +- +boost/utility/enable_if.hpp +- + +/opt/ros/melodic/include/ros/service_client.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/melodic/include/ros/ros/common.h +ros/service_traits.h +/opt/ros/melodic/include/ros/ros/service_traits.h +ros/serialization.h +/opt/ros/melodic/include/ros/ros/serialization.h + +/opt/ros/melodic/include/ros/service_client_options.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/service_traits.h +/opt/ros/melodic/include/ros/ros/service_traits.h + +/opt/ros/melodic/include/ros/service_server.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +common.h +/opt/ros/melodic/include/ros/common.h + +/opt/ros/melodic/include/ros/service_traits.h +boost/type_traits/remove_reference.hpp +- +boost/type_traits/remove_const.hpp +- + +/opt/ros/melodic/include/ros/single_subscriber_publisher.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/serialization.h +/opt/ros/melodic/include/ros/ros/serialization.h +common.h +/opt/ros/melodic/include/ros/common.h +boost/utility.hpp +- + +/opt/ros/melodic/include/ros/spinner.h +ros/types.h +/opt/ros/melodic/include/ros/ros/types.h +common.h +/opt/ros/melodic/include/ros/common.h +boost/shared_ptr.hpp +- + +/opt/ros/melodic/include/ros/static_assert.h +boost/static_assert.hpp +- + +/opt/ros/melodic/include/ros/steady_timer.h +common.h +/opt/ros/melodic/include/ros/common.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +steady_timer_options.h +/opt/ros/melodic/include/ros/steady_timer_options.h + +/opt/ros/melodic/include/ros/steady_timer_options.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h + +/opt/ros/melodic/include/ros/subscribe_options.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/transport_hints.h +/opt/ros/melodic/include/ros/ros/transport_hints.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +subscription_callback_helper.h +/opt/ros/melodic/include/ros/subscription_callback_helper.h + +/opt/ros/melodic/include/ros/subscriber.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/subscription_callback_helper.h +/opt/ros/melodic/include/ros/ros/subscription_callback_helper.h + +/opt/ros/melodic/include/ros/subscription_callback_helper.h +typeinfo +- +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +ros/parameter_adapter.h +/opt/ros/melodic/include/ros/ros/parameter_adapter.h +ros/message_traits.h +/opt/ros/melodic/include/ros/ros/message_traits.h +ros/builtin_message_traits.h +/opt/ros/melodic/include/ros/ros/builtin_message_traits.h +ros/serialization.h +/opt/ros/melodic/include/ros/ros/serialization.h +ros/message_event.h +/opt/ros/melodic/include/ros/ros/message_event.h +ros/static_assert.h +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/is_base_of.hpp +- +boost/utility/enable_if.hpp +- +boost/make_shared.hpp +- + +/opt/ros/melodic/include/ros/this_node.h +common.h +/opt/ros/melodic/include/ros/common.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h + +/opt/ros/melodic/include/ros/time.h +ros/platform.h +- +iostream +- +cmath +- +ros/exception.h +- +duration.h +/opt/ros/melodic/include/ros/duration.h +boost/math/special_functions/round.hpp +- +rostime_decl.h +/opt/ros/melodic/include/ros/rostime_decl.h +sys/timeb.h +- +sys/time.h +- + +/opt/ros/melodic/include/ros/timer.h +common.h +/opt/ros/melodic/include/ros/common.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +timer_options.h +/opt/ros/melodic/include/ros/timer_options.h + +/opt/ros/melodic/include/ros/timer_options.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h + +/opt/ros/melodic/include/ros/topic.h +common.h +/opt/ros/melodic/include/ros/common.h +node_handle.h +/opt/ros/melodic/include/ros/node_handle.h +boost/shared_ptr.hpp +- + +/opt/ros/melodic/include/ros/transport_hints.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h +boost/lexical_cast.hpp +- + +/opt/ros/melodic/include/ros/types.h +stdint.h +- + +/opt/ros/melodic/include/ros/wall_timer.h +common.h +/opt/ros/melodic/include/ros/common.h +forwards.h +/opt/ros/melodic/include/ros/forwards.h +wall_timer_options.h +/opt/ros/melodic/include/ros/wall_timer_options.h + +/opt/ros/melodic/include/ros/wall_timer_options.h +common.h +/opt/ros/melodic/include/ros/common.h +ros/forwards.h +/opt/ros/melodic/include/ros/ros/forwards.h + +/opt/ros/melodic/include/rosconsole/macros_generated.h + +/opt/ros/melodic/include/xmlrpcpp/XmlRpcDecl.h +ros/macros.h +- + +/opt/ros/melodic/include/xmlrpcpp/XmlRpcValue.h +xmlrpcpp/XmlRpcDecl.h +/opt/ros/melodic/include/xmlrpcpp/xmlrpcpp/XmlRpcDecl.h +map +- +string +- +vector +- +time.h +- + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/DependInfo.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4983ef29b86690daae61dde333a13c698da51779 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/DependInfo.cmake @@ -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/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp" "/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "ROSCONSOLE_BACKEND_LOG4CXX" + "ROS_BUILD_SHARED_LIBS=1" + "ROS_PACKAGE_NAME=\"learning_topic\"" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/opt/ros/melodic/include" + "/opt/ros/melodic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/build.make b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c169fc22723b5fd5499a167d61c2c7564b56728f --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/build.make @@ -0,0 +1,131 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Include any dependencies generated for this target. +include learning_topic/CMakeFiles/velocity_publisher.dir/depend.make + +# Include the progress variables for this target. +include learning_topic/CMakeFiles/velocity_publisher.dir/progress.make + +# Include the compile flags for this target's objects. +include learning_topic/CMakeFiles/velocity_publisher.dir/flags.make + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: learning_topic/CMakeFiles/velocity_publisher.dir/flags.make +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o -c /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.i" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp > CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.i + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.s" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp -o CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.s + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.requires: + +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.requires + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.provides: learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.requires + $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.provides.build +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.provides + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.provides.build: learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o + + +# Object files for target velocity_publisher +velocity_publisher_OBJECTS = \ +"CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o" + +# External object files for target velocity_publisher +velocity_publisher_EXTERNAL_OBJECTS = + +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: learning_topic/CMakeFiles/velocity_publisher.dir/build.make +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/libroscpp.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_filesystem.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/librosconsole.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/librosconsole_log4cxx.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/librosconsole_backend_interface.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/liblog4cxx.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_regex.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/libxmlrpcpp.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/libroscpp_serialization.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/librostime.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /opt/ros/melodic/lib/libcpp_common.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_system.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_thread.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_chrono.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_date_time.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libboost_atomic.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libpthread.so +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 +/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher: learning_topic/CMakeFiles/velocity_publisher.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable /home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher" + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/velocity_publisher.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +learning_topic/CMakeFiles/velocity_publisher.dir/build: /home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher + +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/build + +learning_topic/CMakeFiles/velocity_publisher.dir/requires: learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o.requires + +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/requires + +learning_topic/CMakeFiles/velocity_publisher.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic && $(CMAKE_COMMAND) -P CMakeFiles/velocity_publisher.dir/cmake_clean.cmake +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/clean + +learning_topic/CMakeFiles/velocity_publisher.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/depend + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/cmake_clean.cmake b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3b8a4cd163afa20e0959b95ba3cae431446416fe --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o" + "/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher.pdb" + "/home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/velocity_publisher.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.internal b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..00dde3af92f5eb4781c5eaf2b384e872f3c0618f --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.internal @@ -0,0 +1,62 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o + /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp + /opt/ros/melodic/include/ros/advertise_options.h + /opt/ros/melodic/include/ros/advertise_service_options.h + /opt/ros/melodic/include/ros/assert.h + /opt/ros/melodic/include/ros/builtin_message_traits.h + /opt/ros/melodic/include/ros/common.h + /opt/ros/melodic/include/ros/console.h + /opt/ros/melodic/include/ros/console_backend.h + /opt/ros/melodic/include/ros/datatypes.h + /opt/ros/melodic/include/ros/duration.h + /opt/ros/melodic/include/ros/exception.h + /opt/ros/melodic/include/ros/exceptions.h + /opt/ros/melodic/include/ros/forwards.h + /opt/ros/melodic/include/ros/init.h + /opt/ros/melodic/include/ros/macros.h + /opt/ros/melodic/include/ros/master.h + /opt/ros/melodic/include/ros/message.h + /opt/ros/melodic/include/ros/message_event.h + /opt/ros/melodic/include/ros/message_forward.h + /opt/ros/melodic/include/ros/message_traits.h + /opt/ros/melodic/include/ros/names.h + /opt/ros/melodic/include/ros/node_handle.h + /opt/ros/melodic/include/ros/param.h + /opt/ros/melodic/include/ros/parameter_adapter.h + /opt/ros/melodic/include/ros/platform.h + /opt/ros/melodic/include/ros/publisher.h + /opt/ros/melodic/include/ros/rate.h + /opt/ros/melodic/include/ros/ros.h + /opt/ros/melodic/include/ros/roscpp_serialization_macros.h + /opt/ros/melodic/include/ros/rostime_decl.h + /opt/ros/melodic/include/ros/serialization.h + /opt/ros/melodic/include/ros/serialized_message.h + /opt/ros/melodic/include/ros/service.h + /opt/ros/melodic/include/ros/service_callback_helper.h + /opt/ros/melodic/include/ros/service_client.h + /opt/ros/melodic/include/ros/service_client_options.h + /opt/ros/melodic/include/ros/service_server.h + /opt/ros/melodic/include/ros/service_traits.h + /opt/ros/melodic/include/ros/single_subscriber_publisher.h + /opt/ros/melodic/include/ros/spinner.h + /opt/ros/melodic/include/ros/static_assert.h + /opt/ros/melodic/include/ros/steady_timer.h + /opt/ros/melodic/include/ros/steady_timer_options.h + /opt/ros/melodic/include/ros/subscribe_options.h + /opt/ros/melodic/include/ros/subscriber.h + /opt/ros/melodic/include/ros/subscription_callback_helper.h + /opt/ros/melodic/include/ros/this_node.h + /opt/ros/melodic/include/ros/time.h + /opt/ros/melodic/include/ros/timer.h + /opt/ros/melodic/include/ros/timer_options.h + /opt/ros/melodic/include/ros/topic.h + /opt/ros/melodic/include/ros/transport_hints.h + /opt/ros/melodic/include/ros/types.h + /opt/ros/melodic/include/ros/wall_timer.h + /opt/ros/melodic/include/ros/wall_timer_options.h + /opt/ros/melodic/include/rosconsole/macros_generated.h + /opt/ros/melodic/include/xmlrpcpp/XmlRpcDecl.h + /opt/ros/melodic/include/xmlrpcpp/XmlRpcValue.h diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.make b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b036ca96c38c5c3e677b66f93995fe73e43aa80f --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/depend.make @@ -0,0 +1,62 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/advertise_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/advertise_service_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/assert.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/builtin_message_traits.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/common.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/console.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/console_backend.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/datatypes.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/duration.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/exception.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/exceptions.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/forwards.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/init.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/macros.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/master.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/message.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/message_event.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/message_forward.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/message_traits.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/names.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/node_handle.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/param.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/parameter_adapter.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/platform.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/publisher.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/rate.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/ros.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/roscpp_serialization_macros.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/rostime_decl.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/serialization.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/serialized_message.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service_callback_helper.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service_client.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service_client_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service_server.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/service_traits.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/single_subscriber_publisher.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/spinner.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/static_assert.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/steady_timer.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/steady_timer_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/subscribe_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/subscriber.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/subscription_callback_helper.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/this_node.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/time.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/timer.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/timer_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/topic.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/transport_hints.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/types.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/wall_timer.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/ros/wall_timer_options.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/rosconsole/macros_generated.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/xmlrpcpp/XmlRpcDecl.h +learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o: /opt/ros/melodic/include/xmlrpcpp/XmlRpcValue.h + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/flags.make b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c25a6356247f56d4deb1288e3aaf13bdf7d0e081 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = + +CXX_DEFINES = -DROSCONSOLE_BACKEND_LOG4CXX -DROS_BUILD_SHARED_LIBS=1 -DROS_PACKAGE_NAME=\"learning_topic\" + +CXX_INCLUDES = -I/opt/ros/melodic/include -I/opt/ros/melodic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/link.txt b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5c8df517451148a81fc86b8d7f9aa9b3e1eaab5 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -rdynamic CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o -o /home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib/learning_topic/velocity_publisher -Wl,-rpath,/opt/ros/melodic/lib /opt/ros/melodic/lib/libroscpp.so -lboost_filesystem /opt/ros/melodic/lib/librosconsole.so /opt/ros/melodic/lib/librosconsole_log4cxx.so /opt/ros/melodic/lib/librosconsole_backend_interface.so -llog4cxx -lboost_regex /opt/ros/melodic/lib/libxmlrpcpp.so /opt/ros/melodic/lib/libroscpp_serialization.so /opt/ros/melodic/lib/librostime.so /opt/ros/melodic/lib/libcpp_common.so -lboost_system -lboost_thread -lboost_chrono -lboost_date_time -lboost_atomic -lpthread /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/progress.make b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7df1340bfd15f30e69323732abd474231c0c47b0 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 12 +CMAKE_PROGRESS_2 = 13 + diff --git a/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..fd771bbef3808beb66c992a995ef735bba7e0a43 Binary files /dev/null and b/Basics/test_ws/build/learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o differ diff --git a/Basics/test_ws/build/learning_topic/CTestTestfile.cmake b/Basics/test_ws/build/learning_topic/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..03ded1cddbd813576644bda39d3d026a70322cd4 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/Basics/test_ws/build/learning_topic/Makefile b/Basics/test_ws/build/learning_topic/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..2a51abf2e9a89f92fa8bd7179535ece4b3c4ae37 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/Makefile @@ -0,0 +1,482 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(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 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 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 + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_cpp: learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/rule + +.PHONY : turtlesim_generate_messages_cpp + +# fast build rule for target. +turtlesim_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_cpp.dir/build +.PHONY : turtlesim_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_py: learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/rule + +.PHONY : geometry_msgs_generate_messages_py + +# fast build rule for target. +geometry_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_py.dir/build +.PHONY : geometry_msgs_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/velocity_publisher.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/velocity_publisher.dir/rule +.PHONY : learning_topic/CMakeFiles/velocity_publisher.dir/rule + +# Convenience name for target. +velocity_publisher: learning_topic/CMakeFiles/velocity_publisher.dir/rule + +.PHONY : velocity_publisher + +# fast build rule for target. +velocity_publisher/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/build +.PHONY : velocity_publisher/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_cpp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/rule + +.PHONY : geometry_msgs_generate_messages_cpp + +# fast build rule for target. +geometry_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build +.PHONY : geometry_msgs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_py: learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/rule + +.PHONY : turtlesim_generate_messages_py + +# fast build rule for target. +turtlesim_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_py.dir/build +.PHONY : turtlesim_generate_messages_py/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_nodejs: learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/rule + +.PHONY : geometry_msgs_generate_messages_nodejs + +# fast build rule for target. +geometry_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build +.PHONY : geometry_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_lisp: learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/rule + +.PHONY : turtlesim_generate_messages_lisp + +# fast build rule for target. +turtlesim_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_lisp.dir/build +.PHONY : turtlesim_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_cpp: learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/rule + +.PHONY : std_srvs_generate_messages_cpp + +# fast build rule for target. +std_srvs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_cpp.dir/build +.PHONY : std_srvs_generate_messages_cpp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_eus: learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/rule + +.PHONY : geometry_msgs_generate_messages_eus + +# fast build rule for target. +geometry_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_eus.dir/build +.PHONY : geometry_msgs_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_nodejs: learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/rule + +.PHONY : turtlesim_generate_messages_nodejs + +# fast build rule for target. +turtlesim_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_nodejs.dir/build +.PHONY : turtlesim_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +geometry_msgs_generate_messages_lisp: learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/rule + +.PHONY : geometry_msgs_generate_messages_lisp + +# fast build rule for target. +geometry_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build +.PHONY : geometry_msgs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_eus: learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/rule + +.PHONY : std_srvs_generate_messages_eus + +# fast build rule for target. +std_srvs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_eus.dir/build +.PHONY : std_srvs_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_lisp: learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/rule + +.PHONY : std_srvs_generate_messages_lisp + +# fast build rule for target. +std_srvs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_lisp.dir/build +.PHONY : std_srvs_generate_messages_lisp/fast + +# Convenience name for target. +learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule +.PHONY : learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +# Convenience name for target. +turtlesim_generate_messages_eus: learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/rule + +.PHONY : turtlesim_generate_messages_eus + +# fast build rule for target. +turtlesim_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build.make learning_topic/CMakeFiles/turtlesim_generate_messages_eus.dir/build +.PHONY : turtlesim_generate_messages_eus/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_nodejs: learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/rule + +.PHONY : std_srvs_generate_messages_nodejs + +# fast build rule for target. +std_srvs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_nodejs.dir/build +.PHONY : std_srvs_generate_messages_nodejs/fast + +# Convenience name for target. +learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule +.PHONY : learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +# Convenience name for target. +std_srvs_generate_messages_py: learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/rule + +.PHONY : std_srvs_generate_messages_py + +# fast build rule for target. +std_srvs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build.make learning_topic/CMakeFiles/std_srvs_generate_messages_py.dir/build +.PHONY : std_srvs_generate_messages_py/fast + +src/velocity_publisher.o: src/velocity_publisher.cpp.o + +.PHONY : src/velocity_publisher.o + +# target to build an object file +src/velocity_publisher.cpp.o: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.o +.PHONY : src/velocity_publisher.cpp.o + +src/velocity_publisher.i: src/velocity_publisher.cpp.i + +.PHONY : src/velocity_publisher.i + +# target to preprocess a source file +src/velocity_publisher.cpp.i: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.i +.PHONY : src/velocity_publisher.cpp.i + +src/velocity_publisher.s: src/velocity_publisher.cpp.s + +.PHONY : src/velocity_publisher.s + +# target to generate assembly for a file +src/velocity_publisher.cpp.s: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f learning_topic/CMakeFiles/velocity_publisher.dir/build.make learning_topic/CMakeFiles/velocity_publisher.dir/src/velocity_publisher.cpp.s +.PHONY : src/velocity_publisher.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 "... turtlesim_generate_messages_cpp" + @echo "... geometry_msgs_generate_messages_py" + @echo "... velocity_publisher" + @echo "... geometry_msgs_generate_messages_cpp" + @echo "... rebuild_cache" + @echo "... turtlesim_generate_messages_py" + @echo "... edit_cache" + @echo "... geometry_msgs_generate_messages_nodejs" + @echo "... turtlesim_generate_messages_lisp" + @echo "... install" + @echo "... std_srvs_generate_messages_cpp" + @echo "... list_install_components" + @echo "... geometry_msgs_generate_messages_eus" + @echo "... turtlesim_generate_messages_nodejs" + @echo "... test" + @echo "... geometry_msgs_generate_messages_lisp" + @echo "... std_srvs_generate_messages_eus" + @echo "... std_srvs_generate_messages_lisp" + @echo "... turtlesim_generate_messages_eus" + @echo "... std_srvs_generate_messages_nodejs" + @echo "... std_srvs_generate_messages_py" + @echo "... src/velocity_publisher.o" + @echo "... src/velocity_publisher.i" + @echo "... src/velocity_publisher.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: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc new file mode 100644 index 0000000000000000000000000000000000000000..3bcaa31f559274eeee1e195020d44e11be72362b --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/test_ws/install + +Name: learning_topic +Description: Description of learning_topic +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ffc6ddf7cd7d8c5eef162ffbbe95bbba53ca762f --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(learning_topic_CONFIG_INCLUDED) + return() +endif() +set(learning_topic_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("FALSE" STREQUAL "TRUE") + set(learning_topic_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic) + set(learning_topic_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/devel) + set(learning_topic_INSTALL_PREFIX "") + set(learning_topic_PREFIX ${learning_topic_DEVEL_PREFIX}) +else() + set(learning_topic_SOURCE_PREFIX "") + set(learning_topic_DEVEL_PREFIX "") + set(learning_topic_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/install) + set(learning_topic_PREFIX ${learning_topic_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'learning_topic' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(learning_topic_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(learning_topic_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${learning_topic_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '\${prefix}/${idir}'. ${_report}") + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT learning_topic_NUM_DUMMY_TARGETS) + set(learning_topic_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR learning_topic_NUM_DUMMY_TARGETS "${learning_topic_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND learning_topic_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/test_ws/install/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(learning_topic_LIBRARY_DIRS ${lib_path}) + list(APPEND learning_topic_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'learning_topic'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND learning_topic_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(learning_topic_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${learning_topic_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 learning_topic_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${learning_topic_dep}_FOUND) + find_package(${learning_topic_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${learning_topic_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${${learning_topic_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${learning_topic_dep}_LIBRARIES}) + _list_append_deduplicate(learning_topic_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + + _list_append_unique(learning_topic_LIBRARY_DIRS ${${learning_topic_dep}_LIBRARY_DIRS}) + list(APPEND learning_topic_EXPORTED_TARGETS ${${learning_topic_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${learning_topic_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/ordered_paths.cmake b/Basics/test_ws/build/learning_topic/catkin_generated/ordered_paths.cmake new file mode 100644 index 0000000000000000000000000000000000000000..88ba1d8af01839a303cdb6a7d83aacc7be67e6ab --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/ordered_paths.cmake @@ -0,0 +1 @@ +set(ORDERED_PATHS "/opt/ros/melodic/lib") \ No newline at end of file diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/package.cmake b/Basics/test_ws/build/learning_topic/catkin_generated/package.cmake new file mode 100644 index 0000000000000000000000000000000000000000..40095a3ad76b3f7ffeddfa9946a1488950a15f0b --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/package.cmake @@ -0,0 +1,16 @@ +set(_CATKIN_CURRENT_PACKAGE "learning_topic") +set(learning_topic_VERSION "0.0.0") +set(learning_topic_MAINTAINER "hazyparker ") +set(learning_topic_PACKAGE_FORMAT "2") +set(learning_topic_BUILD_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_BUILD_EXPORT_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_BUILDTOOL_DEPENDS "catkin") +set(learning_topic_BUILDTOOL_EXPORT_DEPENDS ) +set(learning_topic_EXEC_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_RUN_DEPENDS "geometry_msgs" "roscpp" "rospy" "std_msgs" "turtlesim") +set(learning_topic_TEST_DEPENDS ) +set(learning_topic_DOC_DEPENDS ) +set(learning_topic_URL_WEBSITE "") +set(learning_topic_URL_BUGTRACKER "") +set(learning_topic_URL_REPOSITORY "") +set(learning_topic_DEPRECATED "") \ No newline at end of file diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py b/Basics/test_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..addc4edf999b783893e94b90ca43899eb926d249 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/pkg.develspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "learning_topic" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/test_ws/devel" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py b/Basics/test_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..c32cf9fa371938208589bfad3ee1cfb16d711085 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/pkg.installspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "learning_topic" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/test_ws/install" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp b/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp new file mode 100644 index 0000000000000000000000000000000000000000..678469c768849af2b4eb89dd3d2f9c3b40db7fe4 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/package.xml.stamp @@ -0,0 +1,74 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + + + + + + + diff --git a/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp b/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp new file mode 100644 index 0000000000000000000000000000000000000000..549fb75ce8000c875c316f444238bd1f28dc88c8 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/catkin_generated/stamps/learning_topic/pkg.pc.em.stamp @@ -0,0 +1,8 @@ +prefix=@PROJECT_SPACE_DIR + +Name: @(CATKIN_PACKAGE_PREFIX + PROJECT_NAME) +Description: Description of @PROJECT_NAME +Version: @PROJECT_VERSION +Cflags: @(' '.join(['-I%s' % include for include in PROJECT_PKG_CONFIG_INCLUDE_DIRS])) +Libs: -L${prefix}/lib @(' '.join(PKG_CONFIG_LIBRARIES_WITH_PREFIX)) +Requires: @(PROJECT_CATKIN_DEPENDS) diff --git a/Basics/test_ws/build/learning_topic/cmake_install.cmake b/Basics/test_ws/build/learning_topic/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48d614f355e4df1b6de4801408272b6fe5324778 --- /dev/null +++ b/Basics/test_ws/build/learning_topic/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topic.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/learning_topic/cmake" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig.cmake" + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/learning_topic/catkin_generated/installspace/learning_topicConfig-version.cmake" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/learning_topic" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/package.xml") +endif() + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/CMakeDirectoryInformation.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b0fbfa0b0277b364d8eb22761eae59dcbbbde599 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hazyparker/project/learn_ros/Basics/test_ws/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hazyparker/project/learn_ros/Basics/test_ws/build") + +# 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}) diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/progress.marks b/Basics/test_ws/build/test_pkg/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..573541ac9702dd3969c9bc859d2b91ec1f7e6e56 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..a6024ffdffb91c15788e55bd76ca9d9069561920 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for roscpp_generate_messages_cpp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make + +roscpp_generate_messages_cpp: test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make + +.PHONY : roscpp_generate_messages_cpp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build: roscpp_generate_messages_cpp + +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build + +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/clean + +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf353654a022affaf54224fbd1c18177f271b037 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..afc8314b51df623a2ca5ea55b4bd9eb410f36c7a --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for roscpp_generate_messages_eus. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make + +roscpp_generate_messages_eus: test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make + +.PHONY : roscpp_generate_messages_eus + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build: roscpp_generate_messages_eus + +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build + +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/clean + +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..61700fa61598b5a7c45ee26eac646fe367101992 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..f3de66f63f2b5ab220aebca23ed8d6721fe4076c --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for roscpp_generate_messages_lisp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make + +roscpp_generate_messages_lisp: test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make + +.PHONY : roscpp_generate_messages_lisp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build: roscpp_generate_messages_lisp + +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build + +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/clean + +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..492a50bd91a039addba1281e459d4aee16b465e4 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..84388b7ef6e2d5ff8969cdec20dfe73632fb6c26 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for roscpp_generate_messages_nodejs. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make + +roscpp_generate_messages_nodejs: test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make + +.PHONY : roscpp_generate_messages_nodejs + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build: roscpp_generate_messages_nodejs + +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build + +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37945a670242e2de6d8465b3474da9eb383ab588 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8b548ca3fd4fcf4aed722fca2d3ffe236aabfb1e --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for roscpp_generate_messages_py. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/progress.make + +roscpp_generate_messages_py: test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make + +.PHONY : roscpp_generate_messages_py + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build: roscpp_generate_messages_py + +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build + +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/clean + +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2c13747338b810ad1480558faa521f8adb7d395b --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/roscpp_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..618e9cc500b9ca2098843fee38727034e237f323 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make + +rosgraph_msgs_generate_messages_cpp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build: rosgraph_msgs_generate_messages_cpp + +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/clean + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..720bdd0edac46cb588da30503f36902d22b1f3bd --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..439d898d4bc0f71facd2cb3d44de57be2ae1e11b --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make + +rosgraph_msgs_generate_messages_eus: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build: rosgraph_msgs_generate_messages_eus + +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/clean + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5610f8400a30f1c9e738841c6a11b635aaeb3648 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8f0a9b96d995f6213d618d8cbd403f9eebad1399 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make + +rosgraph_msgs_generate_messages_lisp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build: rosgraph_msgs_generate_messages_lisp + +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/clean + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cdd6e3fce75ecbc3ad7295b674353e85f77ba7a5 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2818ed20374fb9d71e2d08f6204d0f09d65fa72c --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make + +rosgraph_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build: rosgraph_msgs_generate_messages_nodejs + +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/clean + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..37bf13dc24b1724d4b85b9617056c744d5e99df3 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..0edbb5b1512e598661b1a9ec39ce7b32d63ee7b0 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for rosgraph_msgs_generate_messages_py. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make + +rosgraph_msgs_generate_messages_py: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make + +.PHONY : rosgraph_msgs_generate_messages_py + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build: rosgraph_msgs_generate_messages_py + +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/clean + +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..de801d4c76b9fbe39fc2cdad82bc436399718f92 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/rosgraph_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3416d5de194ecf21dda13699cb9376fb5a5ee7c8 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make + +std_msgs_generate_messages_cpp: test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make + +.PHONY : std_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build: std_msgs_generate_messages_cpp + +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build + +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0d092bf7dcb1a5955b6c2c4eef8f16df0593f3ea --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..564883928f4da148de3d9f2920501bd11d7e54e4 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_msgs_generate_messages_eus. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make + +std_msgs_generate_messages_eus: test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make + +.PHONY : std_msgs_generate_messages_eus + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build: std_msgs_generate_messages_eus + +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build + +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/clean + +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..855155ec96fb985c24a72c15e128f656d9f6065a --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..035218032b1a695a099e39388c3f5db9ac71fc86 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make + +std_msgs_generate_messages_lisp: test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make + +.PHONY : std_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build: std_msgs_generate_messages_lisp + +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build + +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/clean + +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b995112eab054ad92b9ec2bd7533b328f13f306e --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4d3b22c4db55797b8e970b9f51ebefef6e5a0dab --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_msgs_generate_messages_nodejs. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make + +std_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make + +.PHONY : std_msgs_generate_messages_nodejs + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build: std_msgs_generate_messages_nodejs + +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build + +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/clean + +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f5f42ae06987e0d5a16acccec495927a20b926de --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake @@ -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 "") diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..402593e2a8e68ce536fe47a9b33692d1c9db4b43 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +# Utility rule file for std_msgs_generate_messages_py. + +# Include the progress variables for this target. +include test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make + +std_msgs_generate_messages_py: test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make + +.PHONY : std_msgs_generate_messages_py + +# Rule to build all files generated by this target. +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build: std_msgs_generate_messages_py + +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build + +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/clean + +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hazyparker/project/learn_ros/Basics/test_ws/src /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/depend + diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..15da12c8d9c8a0533d756cbfb4fbf902c32cf641 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Basics/test_ws/build/test_pkg/CTestTestfile.cmake b/Basics/test_ws/build/test_pkg/CTestTestfile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a8fc2016eabb4e7b93a32b61cf6ea8302b155116 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg +# Build directory: /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/Basics/test_ws/build/test_pkg/Makefile b/Basics/test_ws/build/test_pkg/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..50559fb55d540525ec7d2ea851eeed6c9d2d5ee5 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/Makefile @@ -0,0 +1,436 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# 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/hazyparker/project/learn_ros/Basics/test_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hazyparker/project/learn_ros/Basics/test_ws/build + +#============================================================================= +# 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 rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(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 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 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 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 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 + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles /home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/CMakeFiles/progress.marks + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hazyparker/project/learn_ros/Basics/test_ws/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule + +# Convenience name for target. +roscpp_generate_messages_py: test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/rule + +.PHONY : roscpp_generate_messages_py + +# fast build rule for target. +roscpp_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_py.dir/build +.PHONY : roscpp_generate_messages_py/fast + +# Convenience name for target. +test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +# Convenience name for target. +roscpp_generate_messages_eus: test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/rule + +.PHONY : roscpp_generate_messages_eus + +# fast build rule for target. +roscpp_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_eus.dir/build +.PHONY : roscpp_generate_messages_eus/fast + +# Convenience name for target. +test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_lisp: test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/rule + +.PHONY : roscpp_generate_messages_lisp + +# fast build rule for target. +roscpp_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_lisp.dir/build +.PHONY : roscpp_generate_messages_lisp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_cpp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_cpp + +# fast build rule for target. +rosgraph_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_cpp.dir/build +.PHONY : rosgraph_msgs_generate_messages_cpp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_lisp: test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/rule + +.PHONY : std_msgs_generate_messages_lisp + +# fast build rule for target. +std_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_lisp.dir/build +.PHONY : std_msgs_generate_messages_lisp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +# Convenience name for target. +roscpp_generate_messages_cpp: test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/rule + +.PHONY : roscpp_generate_messages_cpp + +# fast build rule for target. +roscpp_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_cpp.dir/build +.PHONY : roscpp_generate_messages_cpp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_eus: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_eus + +# fast build rule for target. +rosgraph_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_eus.dir/build +.PHONY : rosgraph_msgs_generate_messages_eus/fast + +# Convenience name for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_lisp: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_lisp + +# fast build rule for target. +rosgraph_msgs_generate_messages_lisp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_lisp.dir/build +.PHONY : rosgraph_msgs_generate_messages_lisp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_cpp: test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/rule + +.PHONY : std_msgs_generate_messages_cpp + +# fast build rule for target. +std_msgs_generate_messages_cpp/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_cpp.dir/build +.PHONY : std_msgs_generate_messages_cpp/fast + +# Convenience name for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_nodejs + +# fast build rule for target. +rosgraph_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/build +.PHONY : rosgraph_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule +.PHONY : test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +rosgraph_msgs_generate_messages_py: test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/rule + +.PHONY : rosgraph_msgs_generate_messages_py + +# fast build rule for target. +rosgraph_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/rosgraph_msgs_generate_messages_py.dir/build +.PHONY : rosgraph_msgs_generate_messages_py/fast + +# Convenience name for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_eus: test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/rule + +.PHONY : std_msgs_generate_messages_eus + +# fast build rule for target. +std_msgs_generate_messages_eus/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_eus.dir/build +.PHONY : std_msgs_generate_messages_eus/fast + +# Convenience name for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_nodejs: test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/rule + +.PHONY : std_msgs_generate_messages_nodejs + +# fast build rule for target. +std_msgs_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_nodejs.dir/build +.PHONY : std_msgs_generate_messages_nodejs/fast + +# Convenience name for target. +test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule +.PHONY : test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +# Convenience name for target. +roscpp_generate_messages_nodejs: test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/rule + +.PHONY : roscpp_generate_messages_nodejs + +# fast build rule for target. +roscpp_generate_messages_nodejs/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make test_pkg/CMakeFiles/roscpp_generate_messages_nodejs.dir/build +.PHONY : roscpp_generate_messages_nodejs/fast + +# Convenience name for target. +test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f CMakeFiles/Makefile2 test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule +.PHONY : test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +# Convenience name for target. +std_msgs_generate_messages_py: test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/rule + +.PHONY : std_msgs_generate_messages_py + +# fast build rule for target. +std_msgs_generate_messages_py/fast: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(MAKE) -f test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build.make test_pkg/CMakeFiles/std_msgs_generate_messages_py.dir/build +.PHONY : std_msgs_generate_messages_py/fast + +# 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 "... rebuild_cache" + @echo "... list_install_components" + @echo "... roscpp_generate_messages_py" + @echo "... roscpp_generate_messages_eus" + @echo "... edit_cache" + @echo "... roscpp_generate_messages_lisp" + @echo "... rosgraph_msgs_generate_messages_cpp" + @echo "... std_msgs_generate_messages_lisp" + @echo "... roscpp_generate_messages_cpp" + @echo "... install" + @echo "... rosgraph_msgs_generate_messages_eus" + @echo "... rosgraph_msgs_generate_messages_lisp" + @echo "... std_msgs_generate_messages_cpp" + @echo "... rosgraph_msgs_generate_messages_nodejs" + @echo "... rosgraph_msgs_generate_messages_py" + @echo "... std_msgs_generate_messages_eus" + @echo "... std_msgs_generate_messages_nodejs" + @echo "... roscpp_generate_messages_nodejs" + @echo "... std_msgs_generate_messages_py" + @echo "... test" +.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: + cd /home/hazyparker/project/learn_ros/Basics/test_ws/build && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkg.pc b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkg.pc new file mode 100644 index 0000000000000000000000000000000000000000..6e11b9a39ca3dc378a77ad2af5f8042f5fb98e90 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkg.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/test_ws/install + +Name: test_pkg +Description: Description of test_pkg +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig-version.cmake b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig.cmake b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f8fdc0bf3c2bf0a4ebf82dedbb0f8d5fa756adf9 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(test_pkg_CONFIG_INCLUDED) + return() +endif() +set(test_pkg_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("FALSE" STREQUAL "TRUE") + set(test_pkg_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg) + set(test_pkg_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/devel) + set(test_pkg_INSTALL_PREFIX "") + set(test_pkg_PREFIX ${test_pkg_DEVEL_PREFIX}) +else() + set(test_pkg_SOURCE_PREFIX "") + set(test_pkg_DEVEL_PREFIX "") + set(test_pkg_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/install) + set(test_pkg_PREFIX ${test_pkg_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'test_pkg' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(test_pkg_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(test_pkg_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${test_pkg_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'test_pkg' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'test_pkg' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '\${prefix}/${idir}'. ${_report}") + endif() + _list_append_unique(test_pkg_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT test_pkg_NUM_DUMMY_TARGETS) + set(test_pkg_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::test_pkg::wrapped-linker-option${test_pkg_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR test_pkg_NUM_DUMMY_TARGETS "${test_pkg_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::test_pkg::wrapped-linker-option${test_pkg_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND test_pkg_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND test_pkg_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/test_ws/install/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(test_pkg_LIBRARY_DIRS ${lib_path}) + list(APPEND test_pkg_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'test_pkg'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND test_pkg_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(test_pkg_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${test_pkg_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 test_pkg_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${test_pkg_dep}_FOUND) + find_package(${test_pkg_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${test_pkg_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(test_pkg_INCLUDE_DIRS ${${test_pkg_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(test_pkg_LIBRARIES ${test_pkg_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${test_pkg_dep}_LIBRARIES}) + _list_append_deduplicate(test_pkg_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(test_pkg_LIBRARIES ${test_pkg_LIBRARIES}) + + _list_append_unique(test_pkg_LIBRARY_DIRS ${${test_pkg_dep}_LIBRARY_DIRS}) + list(APPEND test_pkg_EXPORTED_TARGETS ${${test_pkg_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${test_pkg_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/ordered_paths.cmake b/Basics/test_ws/build/test_pkg/catkin_generated/ordered_paths.cmake new file mode 100644 index 0000000000000000000000000000000000000000..88ba1d8af01839a303cdb6a7d83aacc7be67e6ab --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/ordered_paths.cmake @@ -0,0 +1 @@ +set(ORDERED_PATHS "/opt/ros/melodic/lib") \ No newline at end of file diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/package.cmake b/Basics/test_ws/build/test_pkg/catkin_generated/package.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0ba59e619f85fd61216b7327b055b804565c5c86 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/package.cmake @@ -0,0 +1,16 @@ +set(_CATKIN_CURRENT_PACKAGE "test_pkg") +set(test_pkg_VERSION "0.0.0") +set(test_pkg_MAINTAINER "hazyparker ") +set(test_pkg_PACKAGE_FORMAT "2") +set(test_pkg_BUILD_DEPENDS "roscpp" "rospy" "std_msgs") +set(test_pkg_BUILD_EXPORT_DEPENDS "roscpp" "rospy" "std_msgs") +set(test_pkg_BUILDTOOL_DEPENDS "catkin") +set(test_pkg_BUILDTOOL_EXPORT_DEPENDS ) +set(test_pkg_EXEC_DEPENDS "roscpp" "rospy" "std_msgs") +set(test_pkg_RUN_DEPENDS "roscpp" "rospy" "std_msgs") +set(test_pkg_TEST_DEPENDS ) +set(test_pkg_DOC_DEPENDS ) +set(test_pkg_URL_WEBSITE "") +set(test_pkg_URL_BUGTRACKER "") +set(test_pkg_URL_REPOSITORY "") +set(test_pkg_DEPRECATED "") \ No newline at end of file diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/pkg.develspace.context.pc.py b/Basics/test_ws/build/test_pkg/catkin_generated/pkg.develspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..d88b7018b786fa540fb2468cf58dcf47038a34d4 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/pkg.develspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "test_pkg" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/test_ws/devel" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/pkg.installspace.context.pc.py b/Basics/test_ws/build/test_pkg/catkin_generated/pkg.installspace.context.pc.py new file mode 100644 index 0000000000000000000000000000000000000000..03f0dd60fb4af1d26c88a0f6ec76d4eae32b2d40 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/pkg.installspace.context.pc.py @@ -0,0 +1,8 @@ +# generated from catkin/cmake/template/pkg.context.pc.in +CATKIN_PACKAGE_PREFIX = "" +PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] +PROJECT_CATKIN_DEPENDS = "".replace(';', ' ') +PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] +PROJECT_NAME = "test_pkg" +PROJECT_SPACE_DIR = "/home/hazyparker/project/learn_ros/Basics/test_ws/install" +PROJECT_VERSION = "0.0.0" diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/package.xml.stamp b/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/package.xml.stamp new file mode 100644 index 0000000000000000000000000000000000000000..c180128003d4c2f8867ad32682ca162a337a9fe5 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/package.xml.stamp @@ -0,0 +1,68 @@ + + + test_pkg + 0.0.0 + The test_pkg package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + + + + + + + + diff --git a/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/pkg.pc.em.stamp b/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/pkg.pc.em.stamp new file mode 100644 index 0000000000000000000000000000000000000000..549fb75ce8000c875c316f444238bd1f28dc88c8 --- /dev/null +++ b/Basics/test_ws/build/test_pkg/catkin_generated/stamps/test_pkg/pkg.pc.em.stamp @@ -0,0 +1,8 @@ +prefix=@PROJECT_SPACE_DIR + +Name: @(CATKIN_PACKAGE_PREFIX + PROJECT_NAME) +Description: Description of @PROJECT_NAME +Version: @PROJECT_VERSION +Cflags: @(' '.join(['-I%s' % include for include in PROJECT_PKG_CONFIG_INCLUDE_DIRS])) +Libs: -L${prefix}/lib @(' '.join(PKG_CONFIG_LIBRARIES_WITH_PREFIX)) +Requires: @(PROJECT_CATKIN_DEPENDS) diff --git a/Basics/test_ws/build/test_pkg/cmake_install.cmake b/Basics/test_ws/build/test_pkg/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5858d9be16b2b428939160b7d6f5f8b0ad02195d --- /dev/null +++ b/Basics/test_ws/build/test_pkg/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hazyparker/project/learn_ros/Basics/test_ws/install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkg.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/test_pkg/cmake" TYPE FILE FILES + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig.cmake" + "/home/hazyparker/project/learn_ros/Basics/test_ws/build/test_pkg/catkin_generated/installspace/test_pkgConfig-version.cmake" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/test_pkg" TYPE FILE FILES "/home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg/package.xml") +endif() + diff --git a/Basics/test_ws/devel/.built_by b/Basics/test_ws/devel/.built_by new file mode 100644 index 0000000000000000000000000000000000000000..2e212dd304b5097120ab9fa2ade549804768ad5f --- /dev/null +++ b/Basics/test_ws/devel/.built_by @@ -0,0 +1 @@ +catkin_make \ No newline at end of file diff --git a/Basics/test_ws/devel/.catkin b/Basics/test_ws/devel/.catkin new file mode 100644 index 0000000000000000000000000000000000000000..aec7ae52ba27b6b9db41b0e33a588f57104d8f32 --- /dev/null +++ b/Basics/test_ws/devel/.catkin @@ -0,0 +1 @@ +/home/hazyparker/project/learn_ros/Basics/test_ws/src \ No newline at end of file diff --git a/Basics/test_ws/devel/.rosinstall b/Basics/test_ws/devel/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..e2a4cb96b1dee4ac62ca2f5162f4cc3edfe99186 --- /dev/null +++ b/Basics/test_ws/devel/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/test_ws/devel/setup.sh diff --git a/Basics/test_ws/devel/_setup_util.py b/Basics/test_ws/devel/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/test_ws/devel/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/test_ws/devel/cmake.lock b/Basics/test_ws/devel/cmake.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/test_ws/devel/env.sh b/Basics/test_ws/devel/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/test_ws/devel/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/test_ws/devel/lib/learning_topic/velocity_publisher b/Basics/test_ws/devel/lib/learning_topic/velocity_publisher new file mode 100755 index 0000000000000000000000000000000000000000..8752871e9a32fc3a292658fa415dea6f94993728 Binary files /dev/null and b/Basics/test_ws/devel/lib/learning_topic/velocity_publisher differ diff --git a/Basics/test_ws/devel/lib/pkgconfig/learning_topic.pc b/Basics/test_ws/devel/lib/pkgconfig/learning_topic.pc new file mode 100644 index 0000000000000000000000000000000000000000..44aded8d442836b97424efb56b9965e161fb3581 --- /dev/null +++ b/Basics/test_ws/devel/lib/pkgconfig/learning_topic.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/test_ws/devel + +Name: learning_topic +Description: Description of learning_topic +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/test_ws/devel/lib/pkgconfig/test_pkg.pc b/Basics/test_ws/devel/lib/pkgconfig/test_pkg.pc new file mode 100644 index 0000000000000000000000000000000000000000..2f70e11b095169daf71a38dffd1f8fd9827048b2 --- /dev/null +++ b/Basics/test_ws/devel/lib/pkgconfig/test_pkg.pc @@ -0,0 +1,8 @@ +prefix=/home/hazyparker/project/learn_ros/Basics/test_ws/devel + +Name: test_pkg +Description: Description of test_pkg +Version: 0.0.0 +Cflags: +Libs: -L${prefix}/lib +Requires: diff --git a/Basics/test_ws/devel/local_setup.bash b/Basics/test_ws/devel/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/test_ws/devel/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/test_ws/devel/local_setup.sh b/Basics/test_ws/devel/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..87ebe4ff7e289f266f90f0b991b70f9ebc610b74 --- /dev/null +++ b/Basics/test_ws/devel/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/devel} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/test_ws/devel/local_setup.zsh b/Basics/test_ws/devel/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/test_ws/devel/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/test_ws/devel/setup.bash b/Basics/test_ws/devel/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/test_ws/devel/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/test_ws/devel/setup.sh b/Basics/test_ws/devel/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..de08d035f285e611f23325e26e798cae7c45bc11 --- /dev/null +++ b/Basics/test_ws/devel/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/devel} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/test_ws/devel/setup.zsh b/Basics/test_ws/devel/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/test_ws/devel/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake b/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake b/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..02aef66b560dc2a7bbf63c59547257a4859162a1 --- /dev/null +++ b/Basics/test_ws/devel/share/learning_topic/cmake/learning_topicConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(learning_topic_CONFIG_INCLUDED) + return() +endif() +set(learning_topic_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("TRUE" STREQUAL "TRUE") + set(learning_topic_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic) + set(learning_topic_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/devel) + set(learning_topic_INSTALL_PREFIX "") + set(learning_topic_PREFIX ${learning_topic_DEVEL_PREFIX}) +else() + set(learning_topic_SOURCE_PREFIX "") + set(learning_topic_DEVEL_PREFIX "") + set(learning_topic_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/install) + set(learning_topic_PREFIX ${learning_topic_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'learning_topic' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(learning_topic_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(learning_topic_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${learning_topic_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'learning_topic' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '/home/hazyparker/project/learn_ros/Basics/test_ws/src/learning_topic/${idir}'. ${_report}") + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT learning_topic_NUM_DUMMY_TARGETS) + set(learning_topic_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR learning_topic_NUM_DUMMY_TARGETS "${learning_topic_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::learning_topic::wrapped-linker-option${learning_topic_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND learning_topic_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND learning_topic_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(learning_topic_LIBRARY_DIRS ${lib_path}) + list(APPEND learning_topic_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'learning_topic'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND learning_topic_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(learning_topic_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${learning_topic_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 learning_topic_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${learning_topic_dep}_FOUND) + find_package(${learning_topic_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${learning_topic_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(learning_topic_INCLUDE_DIRS ${${learning_topic_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${learning_topic_dep}_LIBRARIES}) + _list_append_deduplicate(learning_topic_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(learning_topic_LIBRARIES ${learning_topic_LIBRARIES}) + + _list_append_unique(learning_topic_LIBRARY_DIRS ${${learning_topic_dep}_LIBRARY_DIRS}) + list(APPEND learning_topic_EXPORTED_TARGETS ${${learning_topic_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${learning_topic_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig-version.cmake b/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig-version.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7fd9f993a719934b0f7ee411b86bce935627eec0 --- /dev/null +++ b/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig-version.cmake @@ -0,0 +1,14 @@ +# generated from catkin/cmake/template/pkgConfig-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() diff --git a/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig.cmake b/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ac4979927c25c72901a756b85c8c65c54750e143 --- /dev/null +++ b/Basics/test_ws/devel/share/test_pkg/cmake/test_pkgConfig.cmake @@ -0,0 +1,223 @@ +# generated from catkin/cmake/template/pkgConfig.cmake.in + +# append elements to a list and remove existing duplicates from the list +# copied from catkin/cmake/list_append_deduplicate.cmake to keep pkgConfig +# self contained +macro(_list_append_deduplicate listname) + if(NOT "${ARGN}" STREQUAL "") + if(${listname}) + list(REMOVE_ITEM ${listname} ${ARGN}) + endif() + list(APPEND ${listname} ${ARGN}) + endif() +endmacro() + +# append elements to a list if they are not already in the list +# copied from catkin/cmake/list_append_unique.cmake to keep pkgConfig +# self contained +macro(_list_append_unique listname) + foreach(_item ${ARGN}) + list(FIND ${listname} ${_item} _index) + if(_index EQUAL -1) + list(APPEND ${listname} ${_item}) + endif() + endforeach() +endmacro() + +# pack a list of libraries with optional build configuration keywords +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_pack_libraries_with_build_configuration VAR) + set(${VAR} "") + set(_argn ${ARGN}) + list(LENGTH _argn _count) + set(_index 0) + while(${_index} LESS ${_count}) + list(GET _argn ${_index} lib) + if("${lib}" MATCHES "^(debug|optimized|general)$") + math(EXPR _index "${_index} + 1") + if(${_index} EQUAL ${_count}) + message(FATAL_ERROR "_pack_libraries_with_build_configuration() the list of libraries '${ARGN}' ends with '${lib}' which is a build configuration keyword and must be followed by a library") + endif() + list(GET _argn ${_index} library) + list(APPEND ${VAR} "${lib}${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}${library}") + else() + list(APPEND ${VAR} "${lib}") + endif() + math(EXPR _index "${_index} + 1") + endwhile() +endmacro() + +# unpack a list of libraries with optional build configuration keyword prefixes +# copied from catkin/cmake/catkin_libraries.cmake to keep pkgConfig +# self contained +macro(_unpack_libraries_with_build_configuration VAR) + set(${VAR} "") + foreach(lib ${ARGN}) + string(REGEX REPLACE "^(debug|optimized|general)${CATKIN_BUILD_CONFIGURATION_KEYWORD_SEPARATOR}(.+)$" "\\1;\\2" lib "${lib}") + list(APPEND ${VAR} "${lib}") + endforeach() +endmacro() + + +if(test_pkg_CONFIG_INCLUDED) + return() +endif() +set(test_pkg_CONFIG_INCLUDED TRUE) + +# set variables for source/devel/install prefixes +if("TRUE" STREQUAL "TRUE") + set(test_pkg_SOURCE_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg) + set(test_pkg_DEVEL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/devel) + set(test_pkg_INSTALL_PREFIX "") + set(test_pkg_PREFIX ${test_pkg_DEVEL_PREFIX}) +else() + set(test_pkg_SOURCE_PREFIX "") + set(test_pkg_DEVEL_PREFIX "") + set(test_pkg_INSTALL_PREFIX /home/hazyparker/project/learn_ros/Basics/test_ws/install) + set(test_pkg_PREFIX ${test_pkg_INSTALL_PREFIX}) +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "WARNING: package 'test_pkg' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + message("${_msg}") +endif() + +# flag project as catkin-based to distinguish if a find_package()-ed project is a catkin project +set(test_pkg_FOUND_CATKIN_PROJECT TRUE) + +if(NOT " " STREQUAL " ") + set(test_pkg_INCLUDE_DIRS "") + set(_include_dirs "") + if(NOT " " STREQUAL " ") + set(_report "Check the issue tracker '' and consider creating a ticket if the problem has not been reported yet.") + elseif(NOT " " STREQUAL " ") + set(_report "Check the website '' for information and consider reporting the problem.") + else() + set(_report "Report the problem to the maintainer 'hazyparker ' and request to fix the problem.") + endif() + foreach(idir ${_include_dirs}) + if(IS_ABSOLUTE ${idir} AND IS_DIRECTORY ${idir}) + set(include ${idir}) + elseif("${idir} " STREQUAL "include ") + get_filename_component(include "${test_pkg_DIR}/../../../include" ABSOLUTE) + if(NOT IS_DIRECTORY ${include}) + message(FATAL_ERROR "Project 'test_pkg' specifies '${idir}' as an include dir, which is not found. It does not exist in '${include}'. ${_report}") + endif() + else() + message(FATAL_ERROR "Project 'test_pkg' specifies '${idir}' as an include dir, which is not found. It does neither exist as an absolute directory nor in '/home/hazyparker/project/learn_ros/Basics/test_ws/src/test_pkg/${idir}'. ${_report}") + endif() + _list_append_unique(test_pkg_INCLUDE_DIRS ${include}) + endforeach() +endif() + +set(libraries "") +foreach(library ${libraries}) + # keep build configuration keywords, target names and absolute libraries as-is + if("${library}" MATCHES "^(debug|optimized|general)$") + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(${library} MATCHES "^-l") + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(${library} MATCHES "^-") + # This is a linker flag/option (like -pthread) + # There's no standard variable for these, so create an interface library to hold it + if(NOT test_pkg_NUM_DUMMY_TARGETS) + set(test_pkg_NUM_DUMMY_TARGETS 0) + endif() + # Make sure the target name is unique + set(interface_target_name "catkin::test_pkg::wrapped-linker-option${test_pkg_NUM_DUMMY_TARGETS}") + while(TARGET "${interface_target_name}") + math(EXPR test_pkg_NUM_DUMMY_TARGETS "${test_pkg_NUM_DUMMY_TARGETS}+1") + set(interface_target_name "catkin::test_pkg::wrapped-linker-option${test_pkg_NUM_DUMMY_TARGETS}") + endwhile() + add_library("${interface_target_name}" INTERFACE IMPORTED) + if("${CMAKE_VERSION}" VERSION_LESS "3.13.0") + set_property( + TARGET + "${interface_target_name}" + APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "${library}") + else() + target_link_options("${interface_target_name}" INTERFACE "${library}") + endif() + list(APPEND test_pkg_LIBRARIES "${interface_target_name}") + elseif(TARGET ${library}) + list(APPEND test_pkg_LIBRARIES ${library}) + elseif(IS_ABSOLUTE ${library}) + list(APPEND test_pkg_LIBRARIES ${library}) + else() + set(lib_path "") + set(lib "${library}-NOTFOUND") + # since the path where the library is found is returned we have to iterate over the paths manually + foreach(path /home/hazyparker/project/learn_ros/Basics/test_ws/devel/lib;/opt/ros/melodic/lib) + find_library(lib ${library} + PATHS ${path} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(lib) + set(lib_path ${path}) + break() + endif() + endforeach() + if(lib) + _list_append_unique(test_pkg_LIBRARY_DIRS ${lib_path}) + list(APPEND test_pkg_LIBRARIES ${lib}) + else() + # as a fall back for non-catkin libraries try to search globally + find_library(lib ${library}) + if(NOT lib) + message(FATAL_ERROR "Project '${PROJECT_NAME}' tried to find library '${library}'. The library is neither a target nor built/installed properly. Did you compile project 'test_pkg'? Did you find_package() it before the subdirectory containing its code is included?") + endif() + list(APPEND test_pkg_LIBRARIES ${lib}) + endif() + endif() +endforeach() + +set(test_pkg_EXPORTED_TARGETS "") +# create dummy targets for exported code generation targets to make life of users easier +foreach(t ${test_pkg_EXPORTED_TARGETS}) + if(NOT TARGET ${t}) + add_custom_target(${t}) + endif() +endforeach() + +set(depends "") +foreach(depend ${depends}) + string(REPLACE " " ";" depend_list ${depend}) + # the package name of the dependency must be kept in a unique variable so that it is not overwritten in recursive calls + list(GET depend_list 0 test_pkg_dep) + list(LENGTH depend_list count) + if(${count} EQUAL 1) + # simple dependencies must only be find_package()-ed once + if(NOT ${test_pkg_dep}_FOUND) + find_package(${test_pkg_dep} REQUIRED NO_MODULE) + endif() + else() + # dependencies with components must be find_package()-ed again + list(REMOVE_AT depend_list 0) + find_package(${test_pkg_dep} REQUIRED NO_MODULE ${depend_list}) + endif() + _list_append_unique(test_pkg_INCLUDE_DIRS ${${test_pkg_dep}_INCLUDE_DIRS}) + + # merge build configuration keywords with library names to correctly deduplicate + _pack_libraries_with_build_configuration(test_pkg_LIBRARIES ${test_pkg_LIBRARIES}) + _pack_libraries_with_build_configuration(_libraries ${${test_pkg_dep}_LIBRARIES}) + _list_append_deduplicate(test_pkg_LIBRARIES ${_libraries}) + # undo build configuration keyword merging after deduplication + _unpack_libraries_with_build_configuration(test_pkg_LIBRARIES ${test_pkg_LIBRARIES}) + + _list_append_unique(test_pkg_LIBRARY_DIRS ${${test_pkg_dep}_LIBRARY_DIRS}) + list(APPEND test_pkg_EXPORTED_TARGETS ${${test_pkg_dep}_EXPORTED_TARGETS}) +endforeach() + +set(pkg_cfg_extras "") +foreach(extra ${pkg_cfg_extras}) + if(NOT IS_ABSOLUTE ${extra}) + set(extra ${test_pkg_DIR}/${extra}) + endif() + include(${extra}) +endforeach() diff --git a/Basics/test_ws/install/.catkin b/Basics/test_ws/install/.catkin new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Basics/test_ws/install/.rosinstall b/Basics/test_ws/install/.rosinstall new file mode 100644 index 0000000000000000000000000000000000000000..27a6ab9ed0387a70e004ad3e85d7d8f412aa3b2b --- /dev/null +++ b/Basics/test_ws/install/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/hazyparker/project/learn_ros/Basics/test_ws/install/setup.sh diff --git a/Basics/test_ws/install/_setup_util.py b/Basics/test_ws/install/_setup_util.py new file mode 100755 index 0000000000000000000000000000000000000000..bd65cbd8116d35505fbadddb4b640f8319274218 --- /dev/null +++ b/Basics/test_ws/install/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python2.7/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/opt/ros/melodic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Basics/test_ws/install/env.sh b/Basics/test_ws/install/env.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aa9d244ae9475039027a5f25a8d41a46174cddf --- /dev/null +++ b/Basics/test_ws/install/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Basics/test_ws/install/local_setup.bash b/Basics/test_ws/install/local_setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..7da0d973d481c97d4aba63ab3a070fdc192dc3f8 --- /dev/null +++ b/Basics/test_ws/install/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Basics/test_ws/install/local_setup.sh b/Basics/test_ws/install/local_setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..5f84ec3d24388dbb90f94bc120fcd8898c61c8aa --- /dev/null +++ b/Basics/test_ws/install/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/install} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Basics/test_ws/install/local_setup.zsh b/Basics/test_ws/install/local_setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..e692accfd3341ef2f575dec1c83d843bd786107f --- /dev/null +++ b/Basics/test_ws/install/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Basics/test_ws/install/setup.bash b/Basics/test_ws/install/setup.bash new file mode 100644 index 0000000000000000000000000000000000000000..ff47af8f30bcc54efd5892530c84c4159250d4a3 --- /dev/null +++ b/Basics/test_ws/install/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Basics/test_ws/install/setup.sh b/Basics/test_ws/install/setup.sh new file mode 100644 index 0000000000000000000000000000000000000000..6068e1ef0f0681316fe586b490603ad269516baf --- /dev/null +++ b/Basics/test_ws/install/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/hazyparker/project/learn_ros/Basics/test_ws/install} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Basics/test_ws/install/setup.zsh b/Basics/test_ws/install/setup.zsh new file mode 100644 index 0000000000000000000000000000000000000000..9f780b741031d8037b90514441a80f9fed39d02b --- /dev/null +++ b/Basics/test_ws/install/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Basics/test_ws/src/CMakeLists.txt b/Basics/test_ws/src/CMakeLists.txt new file mode 120000 index 0000000000000000000000000000000000000000..66dd650aca8bc895ebfd0001a46559de60baee2c --- /dev/null +++ b/Basics/test_ws/src/CMakeLists.txt @@ -0,0 +1 @@ +/opt/ros/melodic/share/catkin/cmake/toplevel.cmake \ No newline at end of file diff --git a/Basics/test_ws/src/learning_topic/CMakeLists.txt b/Basics/test_ws/src/learning_topic/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dd0e5c2a285daf9ae538396cbc3ca60b01f2a24 --- /dev/null +++ b/Basics/test_ws/src/learning_topic/CMakeLists.txt @@ -0,0 +1,212 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_topic) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic +# CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_topic.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_topic_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(velocity_publisher src/velocity_publisher.cpp) +target_link_libraries(velocity_publisher ${catkin_LIBRARIES}) + + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_topic.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test_ws/src/learning_topic/package.xml b/Basics/test_ws/src/learning_topic/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..678469c768849af2b4eb89dd3d2f9c3b40db7fe4 --- /dev/null +++ b/Basics/test_ws/src/learning_topic/package.xml @@ -0,0 +1,74 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + + + + + + + diff --git a/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp b/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp new file mode 100644 index 0000000000000000000000000000000000000000..212f89a531239477fefd776cb8a219e8a8e70aa3 --- /dev/null +++ b/Basics/test_ws/src/learning_topic/src/velocity_publisher.cpp @@ -0,0 +1,48 @@ +/** + * @file velocity_publisher.cpp + * @author hazyparker(jaimefriedhemlzhao@gmail.com) + * @brief publish turtle1/cmd_vel topic, type geometry::Twist + * @version 0.1 + * @date 2021-12-29 + * + * @copyright Copyright (c) 2021 + * + */ + +#include +#include + + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "velocity_publisher"); + + // create node + ros::NodeHandle n; + + // create a publisher + ros::Publisher turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // set loop rate + ros::Rate loop_rate(10); + + int count = 0; + while(ros::ok()){ + // init msg Twist + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + + // publish message + turtle_vel_pub.publish(vel_msg); + ROS_INFO("publish turtle velocity command[%0.2f m/s, %0.2f rad/s]", + vel_msg.linear.x, vel_msg.angular.z); + + // set delay + loop_rate.sleep(); + + + } + + return 0; +} diff --git a/Basics/test_ws/src/test_pkg/CMakeLists.txt b/Basics/test_ws/src/test_pkg/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bac6e15d1e60e30a8f9fdaf17d729f53b99329f --- /dev/null +++ b/Basics/test_ws/src/test_pkg/CMakeLists.txt @@ -0,0 +1,206 @@ +cmake_minimum_required(VERSION 3.0.2) +project(test_pkg) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES test_pkg +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/test_pkg.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/test_pkg_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_test_pkg.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/test_ws/src/test_pkg/package.xml b/Basics/test_ws/src/test_pkg/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..c180128003d4c2f8867ad32682ca162a337a9fe5 --- /dev/null +++ b/Basics/test_ws/src/test_pkg/package.xml @@ -0,0 +1,68 @@ + + + test_pkg + 0.0.0 + The test_pkg package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + + + + + + + + diff --git a/Basics/workspace_example/.catkin_workspace b/Basics/workspace_example/.catkin_workspace new file mode 100644 index 0000000000000000000000000000000000000000..52fd97e7ea4bd421af3f7dacb539d241bcee6583 --- /dev/null +++ b/Basics/workspace_example/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Basics/workspace_example/src/CMakeLists.txt b/Basics/workspace_example/src/CMakeLists.txt new file mode 120000 index 0000000000000000000000000000000000000000..66dd650aca8bc895ebfd0001a46559de60baee2c --- /dev/null +++ b/Basics/workspace_example/src/CMakeLists.txt @@ -0,0 +1 @@ +/opt/ros/melodic/share/catkin/cmake/toplevel.cmake \ No newline at end of file diff --git a/Basics/workspace_example/src/learning_launch/CMakeLists.txt b/Basics/workspace_example/src/learning_launch/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3a52043fd4c33c725deec6eb0359450473a5ffd --- /dev/null +++ b/Basics/workspace_example/src/learning_launch/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_launch) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_launch +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_launch.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_launch_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_launch.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/workspace_example/src/learning_launch/config/param.yaml b/Basics/workspace_example/src/learning_launch/config/param.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cb382633cfbc92dab21133e79ee8c8fe87d35f93 --- /dev/null +++ b/Basics/workspace_example/src/learning_launch/config/param.yaml @@ -0,0 +1,6 @@ +A: 123 +B: "hello" + +group: + C: 456 + D: "hello?" diff --git a/Basics/workspace_example/src/learning_launch/launch/simple.launch b/Basics/workspace_example/src/learning_launch/launch/simple.launch new file mode 100644 index 0000000000000000000000000000000000000000..c7cd9e7014c7e01f052410423def77626e5e2e01 --- /dev/null +++ b/Basics/workspace_example/src/learning_launch/launch/simple.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Basics/workspace_example/src/learning_launch/launch/turtlesim_parameter_config.launch b/Basics/workspace_example/src/learning_launch/launch/turtlesim_parameter_config.launch new file mode 100644 index 0000000000000000000000000000000000000000..2c81e34f6b006f0a84d4e85bec9a4759ae0207d8 --- /dev/null +++ b/Basics/workspace_example/src/learning_launch/launch/turtlesim_parameter_config.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Basics/workspace_example/src/learning_launch/package.xml b/Basics/workspace_example/src/learning_launch/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..b97222d86777ab6641d574e495e48b53b5522a27 --- /dev/null +++ b/Basics/workspace_example/src/learning_launch/package.xml @@ -0,0 +1,59 @@ + + + learning_launch + 0.0.0 + The learning_launch package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Basics/workspace_example/src/learning_parameter/CMakeLists.txt b/Basics/workspace_example/src/learning_parameter/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f90b3545c1a4aae73ed86ca7df1556b3c8d9586 --- /dev/null +++ b/Basics/workspace_example/src/learning_parameter/CMakeLists.txt @@ -0,0 +1,209 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_parameter) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_srvs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_parameter +# CATKIN_DEPENDS roscpp rospy std_srvs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_parameter.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_parameter_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(parameter_config src/parameter_config.cpp) +target_link_libraries(parameter_config ${catkin_LIBRARIES}) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_parameter.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/workspace_example/src/learning_parameter/package.xml b/Basics/workspace_example/src/learning_parameter/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..905a167b2c7eb8dbdaeaf23372177d3f0d0247a2 --- /dev/null +++ b/Basics/workspace_example/src/learning_parameter/package.xml @@ -0,0 +1,68 @@ + + + learning_parameter + 0.0.0 + The learning_parameter package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_srvs + roscpp + rospy + std_srvs + roscpp + rospy + std_srvs + + + + + + + + diff --git a/Basics/workspace_example/src/learning_parameter/src/parameter_config.cpp b/Basics/workspace_example/src/learning_parameter/src/parameter_config.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b96dd7e6be0c6c7bc78061ed300183535f83383b --- /dev/null +++ b/Basics/workspace_example/src/learning_parameter/src/parameter_config.cpp @@ -0,0 +1,49 @@ +// +// Created by hazyparker on 2022/1/8. +// set/get parameters in turtle node + +#include +#include +#include + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "parameter_config"); + + // create node handle + ros::NodeHandle n; + + // get background RGB param + int red = 0, green = 0, blue = 0; + ros::param::get("/turtlesim/background_r", red); + ros::param::get("/turtlesim/background_g", green); + ros::param::get("/turtlesim/background_b", blue); + + ROS_INFO("get param, background color in RGB [%d, %d, %d]", red, green, blue); + + // set background RGB param + // set all params equal 255, namely white background + ros::param::set("/turtlesim/background_r", 255); + ros::param::set("/turtlesim/background_g", 255); + ros::param::set("/turtlesim/background_b", 255); + + ROS_INFO("new background color set!"); + + // get params again to see changes + ros::param::get("/turtlesim/background_r", red); + ros::param::get("/turtlesim/background_g", green); + ros::param::get("/turtlesim/background_b", blue); + + ROS_INFO("get param, background color in RGB [%d, %d, %d]", red, green, blue); + + // call service to refresh background color + ros::service::waitForService("/clear"); + ros::ServiceClient clear_background = n.serviceClient("/clear"); + std_srvs::Empty srv; + clear_background.call(srv); + + sleep(1); + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_service/CMakeLists.txt b/Basics/workspace_example/src/learning_service/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ee61f22902beafcd083f87534c9969179bdea6 --- /dev/null +++ b/Basics/workspace_example/src/learning_service/CMakeLists.txt @@ -0,0 +1,233 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_service) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +add_service_files( + FILES Person.srv + FILES person.srv +) + +generate_messages( + DEPENDENCIES std_msgs +) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_service + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_service.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_service_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(turtle_spawn src/turtle_spawn.cpp) +target_link_libraries(turtle_spawn ${catkin_LIBRARIES}) + +add_executable(turtle_command_server src/turtle_command_server.cpp) +target_link_libraries(turtle_command_server ${catkin_LIBRARIES}) + +add_executable(person_client src/person_client.cpp) +target_link_libraries(person_client ${catkin_LIBRARIES}) +add_dependencies(person_client ${PROJECT_NAME}_gencpp) + +add_executable(person_server src/person_server.cpp) +target_link_libraries(person_server ${catkin_LIBRARIES}) +add_dependencies(person_server ${PROJECT_NAME}_gencpp) + + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_service.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/workspace_example/src/learning_service/package.xml b/Basics/workspace_example/src/learning_service/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c8f54ea1b9a83a05c5d0ee0de299c1b64103319 --- /dev/null +++ b/Basics/workspace_example/src/learning_service/package.xml @@ -0,0 +1,77 @@ + + + learning_service + 0.0.0 + The learning_service package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + + message_generation + message_runtime + + + + + + + + diff --git a/Basics/workspace_example/src/learning_service/src/person_client.cpp b/Basics/workspace_example/src/learning_service/src/person_client.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9676e1dab1bd2857fad954eb94dc9419cad797c3 --- /dev/null +++ b/Basics/workspace_example/src/learning_service/src/person_client.cpp @@ -0,0 +1,37 @@ +// +// Created by hazyparker on 2022/1/7. +// request service /show_person, type defined as learning_service::Person + +#include +#include "learning_service/Person.h" + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "person_client"); + + // create ros node + ros::NodeHandle n; + + // wait for service "/show_person" + // then create a new client, connect it + ros::service::waitForService("/show_person"); + ros::ServiceClient person_client = n.serviceClient("/show_person"); + + // init request data of learning_service::Person + learning_service::Person srv; + srv.request.name = "Tom"; + srv.request.age = 20; + srv.request.sex = learning_service::Person::Request::male; + + // call request + ROS_INFO("Call service to show person[name:%s, age:%d, sex:%d]", + srv.request.name.c_str(), srv.request.age, srv.request.sex); + person_client.call(srv); + + // show calling result + ROS_INFO("show person result: %s", srv.response.result.c_str()); + + return 0; +} + + diff --git a/Basics/workspace_example/src/learning_service/src/person_server.cpp b/Basics/workspace_example/src/learning_service/src/person_server.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e6cc9436094eb970a2279bec718824ccc40bcb4f --- /dev/null +++ b/Basics/workspace_example/src/learning_service/src/person_server.cpp @@ -0,0 +1,35 @@ +// +// Created by hazyparker on 2022/1/7. +// + +#include +#include "learning_service/Person.h" + +bool personCallback(learning_service::Person::Request &req, + learning_service::Person::Response &res){ + // show request data + ROS_INFO("Person: name:%s age:%d sex:%d", req.name.c_str(), req.age, req.sex); + + // set feedback data + res.result = "data flow succeed!"; + + return true; +} + +int main(int argc, char **argv){ + // ros node init + ros::init(argc, argv, "person_server"); + + // create ros node + ros::NodeHandle n; + + // create a server named "/show_person" + // define callback function personCallback + ros::ServiceServer person_service = n.advertiseService("/show_person", personCallback); + + // loop, waiting for callback function + ROS_INFO("ready to show person information"); + ros::spin(); + + return 0; +} diff --git a/Basics/workspace_example/src/learning_service/src/turtle_command_server.cpp b/Basics/workspace_example/src/learning_service/src/turtle_command_server.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c6a2d9476eacdb2cc67496e1969ea8a70bd572d3 --- /dev/null +++ b/Basics/workspace_example/src/learning_service/src/turtle_command_server.cpp @@ -0,0 +1,64 @@ +// +// Created by hazyparker on 2022/1/7. +// run /turtle_command service, type defined as std_srvs/Trigger + +#include +#include +#include + +ros::Publisher turtle_vel_pub; +bool pubCommand = false; + +bool commandCallback(std_srvs::Trigger::Request &req, + std_srvs::Trigger::Response &res){ + // use as flag + pubCommand = !pubCommand; + + // show request data + ROS_INFO("publish turtle velocity command [%s]", pubCommand == true? "yes":"no"); + + // set feedback data + res.success = true; + res.message = "Changed turtle command state..."; + + return true; +} + +int main(int argc, char **argv){ + // ros node init + ros::init(argc, argv, "turtle_command_server"); + + // create ros handle + ros::NodeHandle n; + + // create a server named /turtle_command + // define callback function "commandCallback" + ros::ServiceServer command_service = n.advertiseService("/turtle_command", commandCallback); + + // create a publisher + // publish topic named /turtle1/cmd_vel + // message type defined as geometry_msgs::Twist + turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // loop, waiting for callback function + ROS_INFO("ready to receive turtle command"); + ros::Rate loop_rate(10); + + while(ros::ok()){ + // check callback queue for new message + ros::spinOnce(); + + // if pubCommand = true + if(pubCommand){ + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + turtle_vel_pub.publish(vel_msg); + } + + // set loop frequency + loop_rate.sleep(); + } + + return 0; +} diff --git a/Basics/workspace_example/src/learning_service/src/turtle_spawn.cpp b/Basics/workspace_example/src/learning_service/src/turtle_spawn.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a0b14b8c9b73e81d92dc28ff60fcdacdf6e0988a --- /dev/null +++ b/Basics/workspace_example/src/learning_service/src/turtle_spawn.cpp @@ -0,0 +1,36 @@ +// +// Created by hazyparker on 2022/1/3. +// request /spawn service, type as turtle sim::Spawn + +#include +#include + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "turtle_spawn"); + + // create node handle + ros::NodeHandle n; + + // wait until service /spawn is founded + ros::service::waitForService("/spawn"); + // create a client, connecting to service /spawn + ros::ServiceClient add_turtle = n.serviceClient("/spawn"); + + // init request data + turtlesim::Spawn srv; + srv.request.x = 2.0; + srv.request.y = 2.0; + srv.request.name = "turtle2"; + + // call request service + ROS_INFO("call service to spawn turtle[x:%0.6f, y:%0.6f, name:%s]", + srv.request.x, srv.request.y, srv.request.name.c_str()); + add_turtle.call(srv); + + // show result of calling service + ROS_INFO("Spawn turtle successfully [name:%s]", srv.response.name.c_str()); + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_service/srv/Person.srv b/Basics/workspace_example/src/learning_service/srv/Person.srv new file mode 100644 index 0000000000000000000000000000000000000000..06c18261bed1932735a7dfc18fc58441b404c9e7 --- /dev/null +++ b/Basics/workspace_example/src/learning_service/srv/Person.srv @@ -0,0 +1,9 @@ +string name +uint8 age +uint8 sex + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 +--- +string result diff --git a/Basics/workspace_example/src/learning_service/srv/person.srv b/Basics/workspace_example/src/learning_service/srv/person.srv new file mode 100644 index 0000000000000000000000000000000000000000..6a4fa164e80341651ee07f06b03f501013ad95ae --- /dev/null +++ b/Basics/workspace_example/src/learning_service/srv/person.srv @@ -0,0 +1,9 @@ +string name +uint8 age +uint8 sex + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 +--- +string result \ No newline at end of file diff --git a/Basics/workspace_example/src/learning_tf/CMakeLists.txt b/Basics/workspace_example/src/learning_tf/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..31ecd079264840eb8781e7529f37affba3c7a30b --- /dev/null +++ b/Basics/workspace_example/src/learning_tf/CMakeLists.txt @@ -0,0 +1,213 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_tf) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + tf + turtlesim +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_tf +# CATKIN_DEPENDS roscpp rospy tf turtlesim +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_tf.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_tf_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +add_executable(turtle_tf_broadcaster src/turtle_tf_broadcaster.cpp) +target_link_libraries(turtle_tf_broadcaster ${catkin_LIBRARIES}) + +add_executable(turtle_tf_listener src/turtle_tf_listener.cpp) +target_link_libraries(turtle_tf_listener ${catkin_LIBRARIES}) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_tf.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/workspace_example/src/learning_tf/package.xml b/Basics/workspace_example/src/learning_tf/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..d8843783a836bf05ed0eb92d9d967bba7b442a4f --- /dev/null +++ b/Basics/workspace_example/src/learning_tf/package.xml @@ -0,0 +1,71 @@ + + + learning_tf + 0.0.0 + The learning_tf package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + tf + turtlesim + roscpp + rospy + tf + turtlesim + roscpp + rospy + tf + turtlesim + + + + + + + + diff --git a/Basics/workspace_example/src/learning_tf/src/turtle_tf_broadcaster.cpp b/Basics/workspace_example/src/learning_tf/src/turtle_tf_broadcaster.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ad75826f7e071c5f5b914d4ac9551f0ea48bd5b8 --- /dev/null +++ b/Basics/workspace_example/src/learning_tf/src/turtle_tf_broadcaster.cpp @@ -0,0 +1,48 @@ +// +// Created by hazyparker on 2022/1/8. +// create tf data, send cmd of turtle2 + +#include +#include +#include + +std::string turtle_name; + +void poseCallback(const turtlesim::PoseConstPtr &msg){ + // create tf broadcaster + static tf::TransformBroadcaster br; + + // init tf data + tf::Transform transform; + transform.setOrigin(tf::Vector3(msg->x, msg->y, 0.0)); + tf::Quaternion q; + q.setRPY(0, 0, msg->theta); + transform.setRotation(q); + + // broadcast tf data between world and turtle(store in transform) + // describe axis relationship of world and turtle_name + // from now to next 10 seconds + br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), "world", turtle_name)); +} + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "my_tf_broadcaster"); + + // use input param as turtle name + if(argc != 2){ + ROS_ERROR("need turtle name as argument"); + return -1; + } + turtle_name = argv[1]; + + // subscribe Pose topic + ros::NodeHandle n; + ros::Subscriber sub = n.subscribe(turtle_name+"/pose", 10, poseCallback); + + // loop, waiting for callback function + ros::spin(); + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_tf/src/turtle_tf_listener.cpp b/Basics/workspace_example/src/learning_tf/src/turtle_tf_listener.cpp new file mode 100644 index 0000000000000000000000000000000000000000..1b6e6e384df14e71f3fe204c4055e530f26339ab --- /dev/null +++ b/Basics/workspace_example/src/learning_tf/src/turtle_tf_listener.cpp @@ -0,0 +1,57 @@ +// +// Created by hazyparker on 2022/1/8. +// listener of tf data + +#include +#include +#include +#include + + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "my_tf_listener"); + + // create ros node + ros::NodeHandle n; + + // create turtle2 + ros::service::waitForService("/spawn"); + ros::ServiceClient add_turtle = n.serviceClient("/spawn"); + turtlesim::Spawn srv; + add_turtle.call(srv); + + // create publisher + ros::Publisher turtle_vel = n.advertise("/turtle2/cmd_vel", 10); + + // create tf listener + tf::TransformListener transformListener; + + ros::Rate loop_rate(10.0); + while(n.ok()){ + // get tf data between turtle1 and turtle2 + tf::StampedTransform transform; + try{ + transformListener.waitForTransform("/turtle2", "/turtle1", ros::Time(0), ros::Duration(3.0)); + transformListener.lookupTransform("/turtle2", "/turtle1", ros::Time(0), transform); + } + catch(tf::TransformException &exception){ + ROS_ERROR("%s", exception.what()); + ros::Duration(1.0).sleep(); + continue; + } + + // publish cmd_vel of turtle2 to catch up with turtle1 + // a simple P(proportion) control + geometry_msgs::Twist vel_msg; + vel_msg.angular.z = 4.0 * atan2(transform.getOrigin().y(), transform.getOrigin().x()); + vel_msg.linear.x = 0.5 * sqrt(pow(transform.getOrigin().x(), 2) + + pow(transform.getOrigin().y(), 2)); + turtle_vel.publish(vel_msg); + + loop_rate.sleep(); + } + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_topic/CMakeLists.txt b/Basics/workspace_example/src/learning_topic/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..34c8da705d159f5d19b9a48dbf74b70c10706190 --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/CMakeLists.txt @@ -0,0 +1,231 @@ +cmake_minimum_required(VERSION 3.0.2) +project(learning_topic) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# std_msgs +# ) + +add_message_files( + FILES Person.msg +) + +generate_messages( + DEPENDENCIES std_msgs +) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES learning_topic + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs turtlesim message_runtime +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/learning_topic.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/learning_topic_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) +add_executable(velocity_publisher src/velocity_publisher.cpp) +target_link_libraries(velocity_publisher ${catkin_LIBRARIES}) + +add_executable(pose_subscriber src/pose_subscriber.cpp) +target_link_libraries(pose_subscriber ${catkin_LIBRARIES}) + +add_executable(person_publisher src/person_publisher.cpp) +target_link_libraries(person_publisher ${catkin_LIBRARIES}) +add_dependencies(person_publisher ${PROJECT_NAME}_generate_messages_cpp) + +add_executable(person_subscriber src/person_subscriber.cpp) +target_link_libraries(person_subscriber ${catkin_LIBRARIES}) +add_dependencies(person_subscriber ${PROJECT_NAME}_generate_messages_cpp) + + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_learning_topic.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Basics/workspace_example/src/learning_topic/msg/Person.msg b/Basics/workspace_example/src/learning_topic/msg/Person.msg new file mode 100644 index 0000000000000000000000000000000000000000..9e8a732d26266b3371c202be2f59934518181a0f --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/msg/Person.msg @@ -0,0 +1,7 @@ +string name +uint8 sex +uint8 age + +uint8 unknown = 0 +uint8 male = 1 +uint8 female = 2 diff --git a/Basics/workspace_example/src/learning_topic/package.xml b/Basics/workspace_example/src/learning_topic/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..47d2fc9c58769b5ec5c4ee862f9b3872cdb45ac5 --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/package.xml @@ -0,0 +1,76 @@ + + + learning_topic + 0.0.0 + The learning_topic package + + + + + hazyparker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + geometry_msgs + roscpp + rospy + std_msgs + turtlesim + message_generation + message_runtime + + + + + + + + diff --git a/Basics/workspace_example/src/learning_topic/src/person_publisher.cpp b/Basics/workspace_example/src/learning_topic/src/person_publisher.cpp new file mode 100644 index 0000000000000000000000000000000000000000..818fefde41f2be902af6fd400fdccb0b8177ecb3 --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/src/person_publisher.cpp @@ -0,0 +1,44 @@ +// +// Created by hazyparker on 2022/1/3. +// Publish person_info topic, message type defined as learning_topic::Person + +#include +#include "learning_topic//Person.h" + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "person_publisher"); + + // create node handle + ros::NodeHandle n; + + // create a publisher + // whose topic name is person_info + // message type is learning_topic::Person + ros::Publisher person_info_pub = n.advertise("/person_info", 10); + + // set frequency for loop + ros::Rate loop_rate(1); + + while(ros::ok()){ + // init learning_topic::Person message + learning_topic::Person person_msg; + person_msg.name = "Alex"; + person_msg.sex = learning_topic::Person::male; + person_msg.age = 22; + + // publish message + person_info_pub.publish(person_msg); + + ROS_INFO("publish person info: name: %s age: %d sex: %d", + person_msg.name.c_str(), person_msg.age, person_msg.sex); + + // set delay time for each loop + loop_rate.sleep(); + } + + return 0; +} + + + diff --git a/Basics/workspace_example/src/learning_topic/src/person_subscriber.cpp b/Basics/workspace_example/src/learning_topic/src/person_subscriber.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b240cbe74fcfbac881b7c5766287da8f12def351 --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/src/person_subscriber.cpp @@ -0,0 +1,32 @@ +// +// Created by hazyparker on 2022/1/3. +// Subscribe topic /person_info, type defined as learning_topic::Person + +#include +#include "learning_topic/Person.h" + +void personInfoCallback(const learning_topic::Person::ConstPtr &msg){ + // while message received, step to callback function + // print message + ROS_INFO("subscribe person info: name %s age: %d sex: %d", + msg->name.c_str(), msg->age, msg->sex); +} + +int main(int argc, char **argv){ + // init ROS node + ros::init(argc, argv, "person_subscriber"); + + // create node handle + ros::NodeHandle n; + + // create a subscriber + // subscribe topic named /person_info + // define callback function personInfoCallback + ros::Subscriber person_info_sub = n.subscribe("/person_info", 10, personInfoCallback); + + // wait for message + ros::spin(); + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_topic/src/pose_subscriber.cpp b/Basics/workspace_example/src/learning_topic/src/pose_subscriber.cpp new file mode 100644 index 0000000000000000000000000000000000000000..614ab368a072ac25c87873991e109b3a442a2a36 --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/src/pose_subscriber.cpp @@ -0,0 +1,30 @@ +// +// Created by hazyparker on 2021/12/31. +// + +#include +#include "turtlesim/Pose.h" + +void poseCallback(const turtlesim::Pose::ConstPtr& msg){ + // print message received + ROS_INFO("Turtle Pose: x: %0.6f, y: %0.6f", msg->x, msg->y); +} + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "pose_subscriber"); + + // create node handle + ros::NodeHandle n; + + // create a subscriber + // subscribe topic whose name is /turtle1/pose + // write callback function + ros::Subscriber pose_sub = n.subscribe("/turtle1/pose", 10, poseCallback); + + // looping, wait for callback getting data + ros::spin(); + + return 0; +} + diff --git a/Basics/workspace_example/src/learning_topic/src/velocity_publisher.cpp b/Basics/workspace_example/src/learning_topic/src/velocity_publisher.cpp new file mode 100644 index 0000000000000000000000000000000000000000..13ce5136f779484a604b701ad867cb8a22faec2b --- /dev/null +++ b/Basics/workspace_example/src/learning_topic/src/velocity_publisher.cpp @@ -0,0 +1,37 @@ +// +// Created by hazyparker on 2021/12/31. +// + +#include +#include + +int main(int argc, char **argv){ + // init ros node + ros::init(argc, argv, "velocity_publisher"); + + // create node + ros::NodeHandle n; + + // create a publisher + ros::Publisher turtle_vel_pub = n.advertise("/turtle1/cmd_vel", 10); + + // set loop rate + ros::Rate loop_rate(10); + + while(ros::ok()){ + // init msg Twist + geometry_msgs::Twist vel_msg; + vel_msg.linear.x = 0.5; + vel_msg.angular.z = 0.2; + + // publish message + turtle_vel_pub.publish(vel_msg); + ROS_INFO("publish turtle velocity command[%0.2f m/s, %0.2f rad/s]", + vel_msg.linear.x, vel_msg.angular.z); + + // set delay + loop_rate.sleep(); + } + + return 0; +} \ No newline at end of file