Compare commits
36 Commits
2c67f79289
...
27bd1d3c34
Author | SHA1 | Date |
---|---|---|
LQS | 27bd1d3c34 | 7 months ago |
LQS | 6bb2935599 | 7 months ago |
eazzy | 8489d8b38e | 7 months ago |
eazzy | ce1a29964a | 7 months ago |
m6wf5oeyl | 0bbbd5970d | 7 months ago |
eazzy | 5ba654b9b7 | 7 months ago |
m6wf5oeyl | b456e18465 | 7 months ago |
eazzy | 77cff8e76e | 7 months ago |
eazzy | 9f85f0a33b | 7 months ago |
cys | ba53d6fbc2 | 7 months ago |
cys | e861d1e9b7 | 7 months ago |
cys | aac845678e | 7 months ago |
m6wf5oeyl | cd7ba0f2ae | 7 months ago |
m6wf5oeyl | 1824a8b9c9 | 7 months ago |
m6wf5oeyl | 86be319e9c | 7 months ago |
m6wf5oeyl | 63d5a40cf8 | 7 months ago |
eazzy | f75db254ea | 7 months ago |
eazzy | 85c97c5415 | 7 months ago |
eazzy | f0e910b5af | 8 months ago |
eazzy | c8a340697c | 8 months ago |
m6wf5oeyl | e7c50eff5c | 8 months ago |
m6wf5oeyl | 675d70403d | 8 months ago |
m6wf5oeyl | 2b1cec46b5 | 8 months ago |
eazzy | 1de696b151 | 8 months ago |
eazzy | 910c5b3de3 | 8 months ago |
eazzy | 651a488546 | 8 months ago |
eazzy | a0b1860b74 | 8 months ago |
cys | 9affcf977a | 8 months ago |
cys | d0f9e70bf1 | 8 months ago |
cys | 969a7d991e | 8 months ago |
cys | 1a31cd9b90 | 8 months ago |
cys | 4b639662e8 | 8 months ago |
cys | 138cf76182 | 8 months ago |
cys | f1a11897ff | 8 months ago |
eazzy | 0070929ac4 | 8 months ago |
eazzy | 0c149dc484 | 8 months ago |
@ -1,2 +1,5 @@
|
|||||||
# Enjoy
|
|
||||||
|
|
||||||
|
#
|
||||||
|
Eazzy in the house
|
||||||
|
geekChen will carry
|
||||||
|
# 2024.5.5 aircraft src submit
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,31 @@
|
|||||||
|
QT += core gui
|
||||||
|
QT += webenginewidgets
|
||||||
|
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
|
CONFIG += c++17
|
||||||
|
|
||||||
|
# You can make your code fail to compile if it uses deprecated APIs.
|
||||||
|
# In order to do so, uncomment the following line.
|
||||||
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
|
||||||
|
SOURCES += \
|
||||||
|
main.cpp \
|
||||||
|
guidingui.cpp \
|
||||||
|
robotlistdialog.cpp
|
||||||
|
|
||||||
|
HEADERS += \
|
||||||
|
guidingui.h \
|
||||||
|
robotlistdialog.h
|
||||||
|
|
||||||
|
FORMS += \
|
||||||
|
guidingui.ui \
|
||||||
|
robotlistdialog.ui
|
||||||
|
|
||||||
|
# Default rules for deployment.
|
||||||
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||||||
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||||
|
!isEmpty(target.path): INSTALLS += target
|
||||||
|
|
||||||
|
RESOURCES += \
|
||||||
|
res.qrc
|
@ -0,0 +1,29 @@
|
|||||||
|
#include "guidingui.h"
|
||||||
|
#include "ui_guidingui.h"
|
||||||
|
#include <QWebEngineView>
|
||||||
|
|
||||||
|
GuidingUI::GuidingUI(QWidget *parent)
|
||||||
|
: QMainWindow(parent)
|
||||||
|
, ui(new Ui::GuidingUI)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
|
||||||
|
// QWebEngineView *view = new QWebEngineView(ui->map_api);
|
||||||
|
// view->setGeometry(ui->map_api->geometry()); // 设置与frame相同的大小和位置
|
||||||
|
// view->setUrl(QUrl(QStringLiteral("file:///C:/Users/11/Desktop/map.html")));
|
||||||
|
// view->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
GuidingUI::~GuidingUI()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
void GuidingUI::on_robottab_clicked()
|
||||||
|
{
|
||||||
|
RobotListDialog *robotListDialog = new RobotListDialog(this);
|
||||||
|
robotListDialog->addRobotInfo("机器人1", "类型A", "运行", "位置A");
|
||||||
|
robotListDialog->addRobotInfo("机器人2", "类型B", "停止", "位置B");
|
||||||
|
// 添加更多机器人信息...
|
||||||
|
robotListDialog->exec();
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
#ifndef GUIDINGUI_H
|
||||||
|
#define GUIDINGUI_H
|
||||||
|
|
||||||
|
#include <QMainWindow>
|
||||||
|
#include "robotlistdialog.h"
|
||||||
|
|
||||||
|
QT_BEGIN_NAMESPACE
|
||||||
|
namespace Ui {
|
||||||
|
class GuidingUI;
|
||||||
|
}
|
||||||
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
|
class GuidingUI : public QMainWindow
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
GuidingUI(QWidget *parent = nullptr);
|
||||||
|
~GuidingUI();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void on_robottab_clicked();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::GuidingUI *ui;
|
||||||
|
};
|
||||||
|
#endif // GUIDINGUI_H
|
@ -0,0 +1,145 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>GuidingUI</class>
|
||||||
|
<widget class="QMainWindow" name="GuidingUI">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>1271</width>
|
||||||
|
<height>750</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>伤情态势感知分析系统</string>
|
||||||
|
</property>
|
||||||
|
<property name="toolTipDuration">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">QPushButton {
|
||||||
|
background-color: rgba(255, 255, 255, 0);
|
||||||
|
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
padding: 10px 20px; /* 设置内边距 */
|
||||||
|
|
||||||
|
border-radius: 5px; /* 设置按钮圆角 */
|
||||||
|
|
||||||
|
font-size: 16px; /* 设置文字大小 */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:hover {
|
||||||
|
|
||||||
|
background-color: #45a049; /* 设置鼠标悬停时按钮背景色 */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:pressed {
|
||||||
|
|
||||||
|
background-color: #398439; /* 设置按钮被按下时背景色 */
|
||||||
|
|
||||||
|
}</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="centralwidget">
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">#centralwidget{background-image: url(:/image/res/image/1.png);
|
||||||
|
background-position:center;
|
||||||
|
background-repeat:no-repeat;}</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="layoutWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>1110</x>
|
||||||
|
<y>30</y>
|
||||||
|
<width>126</width>
|
||||||
|
<height>251</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="mapbutton">
|
||||||
|
<property name="text">
|
||||||
|
<string>显示地图</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="displaybutton">
|
||||||
|
<property name="text">
|
||||||
|
<string>显示伤情</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="addrobot">
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">#QPushButton{
|
||||||
|
background-color: rgba(255, 255, 255, 0);
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
border: none;
|
||||||
|
}</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>添加机器人</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="robottab">
|
||||||
|
<property name="text">
|
||||||
|
<string>机器人列表</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="recombutton">
|
||||||
|
<property name="text">
|
||||||
|
<string>提供建议</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<widget class="QMenuBar" name="menubar">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>1271</width>
|
||||||
|
<height>25</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QStatusBar" name="statusbar"/>
|
||||||
|
<action name="action">
|
||||||
|
<property name="text">
|
||||||
|
<string>添加机器人</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="action_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>显示机器人</string>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string><html><head/><body><p>显示机器人</p></body></html></string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="action_4">
|
||||||
|
<property name="text">
|
||||||
|
<string>伤员</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="action_5">
|
||||||
|
<property name="text">
|
||||||
|
<string>加载地图</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
@ -0,0 +1,11 @@
|
|||||||
|
#include "guidingui.h"
|
||||||
|
|
||||||
|
#include <QApplication>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
QApplication a(argc, argv);
|
||||||
|
GuidingUI w;
|
||||||
|
w.show();
|
||||||
|
return a.exec();
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
<RCC>
|
||||||
|
<qresource prefix="/image">
|
||||||
|
<file>res/image/1.png</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
After Width: | Height: | Size: 862 KiB |
@ -0,0 +1,37 @@
|
|||||||
|
#include "robotlistdialog.h"
|
||||||
|
#include "ui_robotlistdialog.h"
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QVBoxLayout>
|
||||||
|
#include <QLabel>
|
||||||
|
|
||||||
|
RobotListDialog::RobotListDialog(QWidget *parent) :
|
||||||
|
QDialog(parent),
|
||||||
|
ui(new Ui::RobotListDialog)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
setWindowTitle("机器人列表");
|
||||||
|
setWindowFlags(Qt::Dialog | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
|
||||||
|
setAttribute(Qt::WA_TranslucentBackground);
|
||||||
|
setStyleSheet("background-color: rgba(255, 255, 255, 150);"); // 设置透明度为 150 的白色背景
|
||||||
|
}
|
||||||
|
|
||||||
|
RobotListDialog::~RobotListDialog()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RobotListDialog::addRobotInfo(QString name, QString type, QString status, QString position)
|
||||||
|
{
|
||||||
|
// 创建一个新的机器人信息部件
|
||||||
|
QWidget *widget = new QWidget();
|
||||||
|
QVBoxLayout *layout = new QVBoxLayout(widget);
|
||||||
|
layout->addWidget(new QLabel("机器人名称:" + name));
|
||||||
|
layout->addWidget(new QLabel("机器人类型:" + type));
|
||||||
|
layout->addWidget(new QLabel("机器人状态:" + status));
|
||||||
|
layout->addWidget(new QLabel("机器人位置:" + position));
|
||||||
|
layout->addStretch();
|
||||||
|
widget->setLayout(layout);
|
||||||
|
|
||||||
|
// 将机器人信息部件添加到布局中
|
||||||
|
layout->addWidget(widget);
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
#ifndef ROBOTLISTDIALOG_H
|
||||||
|
#define ROBOTLISTDIALOG_H
|
||||||
|
|
||||||
|
#include <QDialog>
|
||||||
|
#include <QVBoxLayout>
|
||||||
|
namespace Ui {
|
||||||
|
class RobotListDialog;
|
||||||
|
}
|
||||||
|
|
||||||
|
class RobotListDialog : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit RobotListDialog(QWidget *parent = nullptr);
|
||||||
|
~RobotListDialog();
|
||||||
|
|
||||||
|
void addRobotInfo(QString name, QString type, QString status, QString position);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QVBoxLayout *layout; // 布局来容纳机器人信息
|
||||||
|
Ui::RobotListDialog *ui;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // ROBOTLISTDIALOG_H
|
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>RobotListDialog</class>
|
||||||
|
<widget class="QDialog" name="RobotListDialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>1184</width>
|
||||||
|
<height>734</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Dialog</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
Binary file not shown.
@ -0,0 +1,35 @@
|
|||||||
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
|
project( UnitreeCameraSDK )
|
||||||
|
|
||||||
|
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bins/)
|
||||||
|
set(OpenCV_DIR /home/lqs/opencv-4.6.0/build)
|
||||||
|
find_package(OpenCV 4 REQUIRED)
|
||||||
|
if(OpenCV_FOUND)
|
||||||
|
include_directories(${OpenCV_INCLUDE_DIR})
|
||||||
|
message(STATUS "OpenCV ${OpenCV_VERSION} FOUND")
|
||||||
|
message(STATUS ${OpenCV_LIBS})
|
||||||
|
if(${OpenCV_VERSION_MAJOR} EQUAL 4)
|
||||||
|
add_definitions(-DOPENCV_VERSION_4)
|
||||||
|
elseif(${OpenCV_VERSION_MAJOR} LESS 4)
|
||||||
|
add_definitions(-DOPENCV_VERSION_3)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "OpenCV Library Not Found")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "x86_64")
|
||||||
|
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib/amd64/)
|
||||||
|
link_directories(${PROJECT_SOURCE_DIR}/lib/amd64/)
|
||||||
|
else()
|
||||||
|
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib/arm64/)
|
||||||
|
link_directories(${PROJECT_SOURCE_DIR}/lib/arm64/)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pthread")
|
||||||
|
include_directories(${PROJECT_SOURCE_DIR}/include)
|
||||||
|
|
||||||
|
set(SDKLIBS unitree_camera tstc_V4L2_xu_camera udev systemlog ${OpenCV_LIBS})
|
||||||
|
|
||||||
|
add_subdirectory(${PROJECT_SOURCE_DIR}/examples)
|
||||||
|
|
@ -0,0 +1,373 @@
|
|||||||
|
Mozilla Public License Version 2.0
|
||||||
|
==================================
|
||||||
|
|
||||||
|
1. Definitions
|
||||||
|
--------------
|
||||||
|
|
||||||
|
1.1. "Contributor"
|
||||||
|
means each individual or legal entity that creates, contributes to
|
||||||
|
the creation of, or owns Covered Software.
|
||||||
|
|
||||||
|
1.2. "Contributor Version"
|
||||||
|
means the combination of the Contributions of others (if any) used
|
||||||
|
by a Contributor and that particular Contributor's Contribution.
|
||||||
|
|
||||||
|
1.3. "Contribution"
|
||||||
|
means Covered Software of a particular Contributor.
|
||||||
|
|
||||||
|
1.4. "Covered Software"
|
||||||
|
means Source Code Form to which the initial Contributor has attached
|
||||||
|
the notice in Exhibit A, the Executable Form of such Source Code
|
||||||
|
Form, and Modifications of such Source Code Form, in each case
|
||||||
|
including portions thereof.
|
||||||
|
|
||||||
|
1.5. "Incompatible With Secondary Licenses"
|
||||||
|
means
|
||||||
|
|
||||||
|
(a) that the initial Contributor has attached the notice described
|
||||||
|
in Exhibit B to the Covered Software; or
|
||||||
|
|
||||||
|
(b) that the Covered Software was made available under the terms of
|
||||||
|
version 1.1 or earlier of the License, but not also under the
|
||||||
|
terms of a Secondary License.
|
||||||
|
|
||||||
|
1.6. "Executable Form"
|
||||||
|
means any form of the work other than Source Code Form.
|
||||||
|
|
||||||
|
1.7. "Larger Work"
|
||||||
|
means a work that combines Covered Software with other material, in
|
||||||
|
a separate file or files, that is not Covered Software.
|
||||||
|
|
||||||
|
1.8. "License"
|
||||||
|
means this document.
|
||||||
|
|
||||||
|
1.9. "Licensable"
|
||||||
|
means having the right to grant, to the maximum extent possible,
|
||||||
|
whether at the time of the initial grant or subsequently, any and
|
||||||
|
all of the rights conveyed by this License.
|
||||||
|
|
||||||
|
1.10. "Modifications"
|
||||||
|
means any of the following:
|
||||||
|
|
||||||
|
(a) any file in Source Code Form that results from an addition to,
|
||||||
|
deletion from, or modification of the contents of Covered
|
||||||
|
Software; or
|
||||||
|
|
||||||
|
(b) any new file in Source Code Form that contains any Covered
|
||||||
|
Software.
|
||||||
|
|
||||||
|
1.11. "Patent Claims" of a Contributor
|
||||||
|
means any patent claim(s), including without limitation, method,
|
||||||
|
process, and apparatus claims, in any patent Licensable by such
|
||||||
|
Contributor that would be infringed, but for the grant of the
|
||||||
|
License, by the making, using, selling, offering for sale, having
|
||||||
|
made, import, or transfer of either its Contributions or its
|
||||||
|
Contributor Version.
|
||||||
|
|
||||||
|
1.12. "Secondary License"
|
||||||
|
means either the GNU General Public License, Version 2.0, the GNU
|
||||||
|
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||||
|
Public License, Version 3.0, or any later versions of those
|
||||||
|
licenses.
|
||||||
|
|
||||||
|
1.13. "Source Code Form"
|
||||||
|
means the form of the work preferred for making modifications.
|
||||||
|
|
||||||
|
1.14. "You" (or "Your")
|
||||||
|
means an individual or a legal entity exercising rights under this
|
||||||
|
License. For legal entities, "You" includes any entity that
|
||||||
|
controls, is controlled by, or is under common control with You. For
|
||||||
|
purposes of this definition, "control" means (a) the power, direct
|
||||||
|
or indirect, to cause the direction or management of such entity,
|
||||||
|
whether by contract or otherwise, or (b) ownership of more than
|
||||||
|
fifty percent (50%) of the outstanding shares or beneficial
|
||||||
|
ownership of such entity.
|
||||||
|
|
||||||
|
2. License Grants and Conditions
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
2.1. Grants
|
||||||
|
|
||||||
|
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||||
|
non-exclusive license:
|
||||||
|
|
||||||
|
(a) under intellectual property rights (other than patent or trademark)
|
||||||
|
Licensable by such Contributor to use, reproduce, make available,
|
||||||
|
modify, display, perform, distribute, and otherwise exploit its
|
||||||
|
Contributions, either on an unmodified basis, with Modifications, or
|
||||||
|
as part of a Larger Work; and
|
||||||
|
|
||||||
|
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||||
|
for sale, have made, import, and otherwise transfer either its
|
||||||
|
Contributions or its Contributor Version.
|
||||||
|
|
||||||
|
2.2. Effective Date
|
||||||
|
|
||||||
|
The licenses granted in Section 2.1 with respect to any Contribution
|
||||||
|
become effective for each Contribution on the date the Contributor first
|
||||||
|
distributes such Contribution.
|
||||||
|
|
||||||
|
2.3. Limitations on Grant Scope
|
||||||
|
|
||||||
|
The licenses granted in this Section 2 are the only rights granted under
|
||||||
|
this License. No additional rights or licenses will be implied from the
|
||||||
|
distribution or licensing of Covered Software under this License.
|
||||||
|
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||||
|
Contributor:
|
||||||
|
|
||||||
|
(a) for any code that a Contributor has removed from Covered Software;
|
||||||
|
or
|
||||||
|
|
||||||
|
(b) for infringements caused by: (i) Your and any other third party's
|
||||||
|
modifications of Covered Software, or (ii) the combination of its
|
||||||
|
Contributions with other software (except as part of its Contributor
|
||||||
|
Version); or
|
||||||
|
|
||||||
|
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||||
|
its Contributions.
|
||||||
|
|
||||||
|
This License does not grant any rights in the trademarks, service marks,
|
||||||
|
or logos of any Contributor (except as may be necessary to comply with
|
||||||
|
the notice requirements in Section 3.4).
|
||||||
|
|
||||||
|
2.4. Subsequent Licenses
|
||||||
|
|
||||||
|
No Contributor makes additional grants as a result of Your choice to
|
||||||
|
distribute the Covered Software under a subsequent version of this
|
||||||
|
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||||
|
permitted under the terms of Section 3.3).
|
||||||
|
|
||||||
|
2.5. Representation
|
||||||
|
|
||||||
|
Each Contributor represents that the Contributor believes its
|
||||||
|
Contributions are its original creation(s) or it has sufficient rights
|
||||||
|
to grant the rights to its Contributions conveyed by this License.
|
||||||
|
|
||||||
|
2.6. Fair Use
|
||||||
|
|
||||||
|
This License is not intended to limit any rights You have under
|
||||||
|
applicable copyright doctrines of fair use, fair dealing, or other
|
||||||
|
equivalents.
|
||||||
|
|
||||||
|
2.7. Conditions
|
||||||
|
|
||||||
|
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||||
|
in Section 2.1.
|
||||||
|
|
||||||
|
3. Responsibilities
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
3.1. Distribution of Source Form
|
||||||
|
|
||||||
|
All distribution of Covered Software in Source Code Form, including any
|
||||||
|
Modifications that You create or to which You contribute, must be under
|
||||||
|
the terms of this License. You must inform recipients that the Source
|
||||||
|
Code Form of the Covered Software is governed by the terms of this
|
||||||
|
License, and how they can obtain a copy of this License. You may not
|
||||||
|
attempt to alter or restrict the recipients' rights in the Source Code
|
||||||
|
Form.
|
||||||
|
|
||||||
|
3.2. Distribution of Executable Form
|
||||||
|
|
||||||
|
If You distribute Covered Software in Executable Form then:
|
||||||
|
|
||||||
|
(a) such Covered Software must also be made available in Source Code
|
||||||
|
Form, as described in Section 3.1, and You must inform recipients of
|
||||||
|
the Executable Form how they can obtain a copy of such Source Code
|
||||||
|
Form by reasonable means in a timely manner, at a charge no more
|
||||||
|
than the cost of distribution to the recipient; and
|
||||||
|
|
||||||
|
(b) You may distribute such Executable Form under the terms of this
|
||||||
|
License, or sublicense it under different terms, provided that the
|
||||||
|
license for the Executable Form does not attempt to limit or alter
|
||||||
|
the recipients' rights in the Source Code Form under this License.
|
||||||
|
|
||||||
|
3.3. Distribution of a Larger Work
|
||||||
|
|
||||||
|
You may create and distribute a Larger Work under terms of Your choice,
|
||||||
|
provided that You also comply with the requirements of this License for
|
||||||
|
the Covered Software. If the Larger Work is a combination of Covered
|
||||||
|
Software with a work governed by one or more Secondary Licenses, and the
|
||||||
|
Covered Software is not Incompatible With Secondary Licenses, this
|
||||||
|
License permits You to additionally distribute such Covered Software
|
||||||
|
under the terms of such Secondary License(s), so that the recipient of
|
||||||
|
the Larger Work may, at their option, further distribute the Covered
|
||||||
|
Software under the terms of either this License or such Secondary
|
||||||
|
License(s).
|
||||||
|
|
||||||
|
3.4. Notices
|
||||||
|
|
||||||
|
You may not remove or alter the substance of any license notices
|
||||||
|
(including copyright notices, patent notices, disclaimers of warranty,
|
||||||
|
or limitations of liability) contained within the Source Code Form of
|
||||||
|
the Covered Software, except that You may alter any license notices to
|
||||||
|
the extent required to remedy known factual inaccuracies.
|
||||||
|
|
||||||
|
3.5. Application of Additional Terms
|
||||||
|
|
||||||
|
You may choose to offer, and to charge a fee for, warranty, support,
|
||||||
|
indemnity or liability obligations to one or more recipients of Covered
|
||||||
|
Software. However, You may do so only on Your own behalf, and not on
|
||||||
|
behalf of any Contributor. You must make it absolutely clear that any
|
||||||
|
such warranty, support, indemnity, or liability obligation is offered by
|
||||||
|
You alone, and You hereby agree to indemnify every Contributor for any
|
||||||
|
liability incurred by such Contributor as a result of warranty, support,
|
||||||
|
indemnity or liability terms You offer. You may include additional
|
||||||
|
disclaimers of warranty and limitations of liability specific to any
|
||||||
|
jurisdiction.
|
||||||
|
|
||||||
|
4. Inability to Comply Due to Statute or Regulation
|
||||||
|
---------------------------------------------------
|
||||||
|
|
||||||
|
If it is impossible for You to comply with any of the terms of this
|
||||||
|
License with respect to some or all of the Covered Software due to
|
||||||
|
statute, judicial order, or regulation then You must: (a) comply with
|
||||||
|
the terms of this License to the maximum extent possible; and (b)
|
||||||
|
describe the limitations and the code they affect. Such description must
|
||||||
|
be placed in a text file included with all distributions of the Covered
|
||||||
|
Software under this License. Except to the extent prohibited by statute
|
||||||
|
or regulation, such description must be sufficiently detailed for a
|
||||||
|
recipient of ordinary skill to be able to understand it.
|
||||||
|
|
||||||
|
5. Termination
|
||||||
|
--------------
|
||||||
|
|
||||||
|
5.1. The rights granted under this License will terminate automatically
|
||||||
|
if You fail to comply with any of its terms. However, if You become
|
||||||
|
compliant, then the rights granted under this License from a particular
|
||||||
|
Contributor are reinstated (a) provisionally, unless and until such
|
||||||
|
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||||
|
ongoing basis, if such Contributor fails to notify You of the
|
||||||
|
non-compliance by some reasonable means prior to 60 days after You have
|
||||||
|
come back into compliance. Moreover, Your grants from a particular
|
||||||
|
Contributor are reinstated on an ongoing basis if such Contributor
|
||||||
|
notifies You of the non-compliance by some reasonable means, this is the
|
||||||
|
first time You have received notice of non-compliance with this License
|
||||||
|
from such Contributor, and You become compliant prior to 30 days after
|
||||||
|
Your receipt of the notice.
|
||||||
|
|
||||||
|
5.2. If You initiate litigation against any entity by asserting a patent
|
||||||
|
infringement claim (excluding declaratory judgment actions,
|
||||||
|
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||||
|
directly or indirectly infringes any patent, then the rights granted to
|
||||||
|
You by any and all Contributors for the Covered Software under Section
|
||||||
|
2.1 of this License shall terminate.
|
||||||
|
|
||||||
|
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||||
|
end user license agreements (excluding distributors and resellers) which
|
||||||
|
have been validly granted by You or Your distributors under this License
|
||||||
|
prior to termination shall survive termination.
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 6. Disclaimer of Warranty *
|
||||||
|
* ------------------------- *
|
||||||
|
* *
|
||||||
|
* Covered Software is provided under this License on an "as is" *
|
||||||
|
* basis, without warranty of any kind, either expressed, implied, or *
|
||||||
|
* statutory, including, without limitation, warranties that the *
|
||||||
|
* Covered Software is free of defects, merchantable, fit for a *
|
||||||
|
* particular purpose or non-infringing. The entire risk as to the *
|
||||||
|
* quality and performance of the Covered Software is with You. *
|
||||||
|
* Should any Covered Software prove defective in any respect, You *
|
||||||
|
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||||
|
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||||
|
* essential part of this License. No use of any Covered Software is *
|
||||||
|
* authorized under this License except under this disclaimer. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 7. Limitation of Liability *
|
||||||
|
* -------------------------- *
|
||||||
|
* *
|
||||||
|
* Under no circumstances and under no legal theory, whether tort *
|
||||||
|
* (including negligence), contract, or otherwise, shall any *
|
||||||
|
* Contributor, or anyone who distributes Covered Software as *
|
||||||
|
* permitted above, be liable to You for any direct, indirect, *
|
||||||
|
* special, incidental, or consequential damages of any character *
|
||||||
|
* including, without limitation, damages for lost profits, loss of *
|
||||||
|
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||||
|
* and all other commercial damages or losses, even if such party *
|
||||||
|
* shall have been informed of the possibility of such damages. This *
|
||||||
|
* limitation of liability shall not apply to liability for death or *
|
||||||
|
* personal injury resulting from such party's negligence to the *
|
||||||
|
* extent applicable law prohibits such limitation. Some *
|
||||||
|
* jurisdictions do not allow the exclusion or limitation of *
|
||||||
|
* incidental or consequential damages, so this exclusion and *
|
||||||
|
* limitation may not apply to You. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
8. Litigation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Any litigation relating to this License may be brought only in the
|
||||||
|
courts of a jurisdiction where the defendant maintains its principal
|
||||||
|
place of business and such litigation shall be governed by laws of that
|
||||||
|
jurisdiction, without reference to its conflict-of-law provisions.
|
||||||
|
Nothing in this Section shall prevent a party's ability to bring
|
||||||
|
cross-claims or counter-claims.
|
||||||
|
|
||||||
|
9. Miscellaneous
|
||||||
|
----------------
|
||||||
|
|
||||||
|
This License represents the complete agreement concerning the subject
|
||||||
|
matter hereof. If any provision of this License is held to be
|
||||||
|
unenforceable, such provision shall be reformed only to the extent
|
||||||
|
necessary to make it enforceable. Any law or regulation which provides
|
||||||
|
that the language of a contract shall be construed against the drafter
|
||||||
|
shall not be used to construe this License against a Contributor.
|
||||||
|
|
||||||
|
10. Versions of the License
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
10.1. New Versions
|
||||||
|
|
||||||
|
Mozilla Foundation is the license steward. Except as provided in Section
|
||||||
|
10.3, no one other than the license steward has the right to modify or
|
||||||
|
publish new versions of this License. Each version will be given a
|
||||||
|
distinguishing version number.
|
||||||
|
|
||||||
|
10.2. Effect of New Versions
|
||||||
|
|
||||||
|
You may distribute the Covered Software under the terms of the version
|
||||||
|
of the License under which You originally received the Covered Software,
|
||||||
|
or under the terms of any subsequent version published by the license
|
||||||
|
steward.
|
||||||
|
|
||||||
|
10.3. Modified Versions
|
||||||
|
|
||||||
|
If you create software not governed by this License, and you want to
|
||||||
|
create a new license for such software, you may create and use a
|
||||||
|
modified version of this License if you rename the license and remove
|
||||||
|
any references to the name of the license steward (except to note that
|
||||||
|
such modified license differs from this License).
|
||||||
|
|
||||||
|
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||||
|
Licenses
|
||||||
|
|
||||||
|
If You choose to distribute Source Code Form that is Incompatible With
|
||||||
|
Secondary Licenses under the terms of this version of the License, the
|
||||||
|
notice described in Exhibit B of this License must be attached.
|
||||||
|
|
||||||
|
Exhibit A - Source Code Form License Notice
|
||||||
|
-------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
If it is not possible or desirable to put the notice in a particular
|
||||||
|
file, then You may include the notice in a location (such as a LICENSE
|
||||||
|
file in a relevant directory) where a recipient would be likely to look
|
||||||
|
for such a notice.
|
||||||
|
|
||||||
|
You may add additional accurate notices of copyright ownership.
|
||||||
|
|
||||||
|
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||||
|
---------------------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||||
|
defined by the Mozilla Public License, v. 2.0.
|
@ -0,0 +1,84 @@
|
|||||||
|
Introduction
|
||||||
|
---
|
||||||
|
Unitree Robotics is a energetic start-up company that focuses on the development, production and sales of high-performance quadruped robots. It has been interviewed by BBC and CCTV, and is one of the earliest company to publicly sell quadruped robots.
|
||||||
|
|
||||||
|
The company has an outstanding leadership in developing robot core components, motion control, robot perception, etc.
|
||||||
|
|
||||||
|
We attaches great importance to research and development, and thus independently developed the motors, reducers, controllers, and even some sensors of the quadruped robot.
|
||||||
|
|
||||||
|
1.Overview
|
||||||
|
---
|
||||||
|
UnitreeCameraSDK 1.1.0 is a cross-platform library for unitree stereo cameras
|
||||||
|
|
||||||
|
The SDK allows depth and color streaming, and provides intrinsic calibration information. The library also offers pointcloud, depth image aligned to color image.
|
||||||
|
|
||||||
|
2.Dependencies
|
||||||
|
---
|
||||||
|
|
||||||
|
OpenCV, version: equal or lager than 4 (need gstreamer)
|
||||||
|
|
||||||
|
CMake, version: 2.8 or higher
|
||||||
|
|
||||||
|
[OpenGL] for point cloud gui
|
||||||
|
|
||||||
|
[GLUT] for point cloud gui
|
||||||
|
|
||||||
|
[X11], for point cloud gui
|
||||||
|
|
||||||
|
2.Build
|
||||||
|
---
|
||||||
|
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
mkdir build && cd build;
|
||||||
|
cmake ..; make
|
||||||
|
```
|
||||||
|
|
||||||
|
3.Run Examples
|
||||||
|
---
|
||||||
|
|
||||||
|
Get Camera Raw Frame:
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getRawFrame
|
||||||
|
```
|
||||||
|
|
||||||
|
Get Calibration Parameters File
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getCalibParamsFile
|
||||||
|
```
|
||||||
|
|
||||||
|
Get Rectify Frame
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getRectFrame
|
||||||
|
```
|
||||||
|
|
||||||
|
Get Depth Frame
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getDepthFrame
|
||||||
|
```
|
||||||
|
|
||||||
|
Get Point Cloud:
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getPointCloud
|
||||||
|
```
|
||||||
|
|
||||||
|
4.send image and listen image
|
||||||
|
sender:put image to another devices
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_putImagetrans
|
||||||
|
```
|
||||||
|
|
||||||
|
listener:get image from another devices
|
||||||
|
```
|
||||||
|
cd UnitreeCameraSDK;
|
||||||
|
./bin/example_getimagetrans
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,725 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/lqs/UnitreecameraSDK/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
|
||||||
|
########################
|
||||||
|
|
||||||
|
//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=OFF
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//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=UnitreeCameraSDK
|
||||||
|
|
||||||
|
//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 file.
|
||||||
|
GLUT_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
GLUT_Xi_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libXi.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
GLUT_Xmu_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libXmu.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
GLUT_glut_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libglut.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
OPENGL_EGL_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
OPENGL_GLX_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
OPENGL_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENGL_egl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libEGL.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENGL_gl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGL.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENGL_glu_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGLU.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENGL_glx_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGLX.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
OPENGL_opengl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libOpenGL.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for OpenCV.
|
||||||
|
OpenCV_DIR:PATH=OpenCV_DIR-NOTFOUND
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
UnitreeCameraSDK_BINARY_DIR:STATIC=/home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
UnitreeCameraSDK_SOURCE_DIR:STATIC=/home/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_ICE_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_ICE_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libICE.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_SM_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_SM_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libSM.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_X11_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_X11_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libX11.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XRes_INCLUDE_PATH:PATH=X11_XRes_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_XRes_LIB:FILEPATH=X11_XRes_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XShm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XSync_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XTest_INCLUDE_PATH:PATH=X11_XTest_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_XTest_LIB:FILEPATH=X11_XTest_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH:PATH=X11_Xaccessrules_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xau_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xau_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXau.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcomposite_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcomposite_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXcomposite.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcursor_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcursor_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXcursor.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdamage_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdamage_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdamage.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdmcp_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdmcp_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdmcp.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xext_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xfixes_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xfixes_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXfixes.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xft_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xft_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXft.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xi_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xi_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXi.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xinerama_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xinerama_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXinerama.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xinput_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xinput_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXi.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkbfile_INCLUDE_PATH:PATH=X11_Xkbfile_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xkbfile_LIB:FILEPATH=X11_Xkbfile_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkblib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xlib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xmu_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xmu_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXmu.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xpm_INCLUDE_PATH:PATH=X11_Xpm_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xpm_LIB:FILEPATH=X11_Xpm_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrandr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrandr_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXrandr.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrender_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrender_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXrender.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xscreensaver_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xscreensaver_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXss.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xshape_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xt_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xt_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXt.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xutil_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xv_INCLUDE_PATH:PATH=X11_Xv_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xv_LIB:FILEPATH=X11_Xv_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86misc_LIB:FILEPATH=X11_Xxf86misc_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86vm_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXxf86vm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_dpms_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xf86misc_INCLUDE_PATH:PATH=X11_xf86misc_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xf86vmode_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//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/lqs/UnitreecameraSDK/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
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/cmake-gui
|
||||||
|
//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 function connect
|
||||||
|
CMAKE_HAVE_CONNECT:INTERNAL=1
|
||||||
|
//Have function gethostbyname
|
||||||
|
CMAKE_HAVE_GETHOSTBYNAME:INTERNAL=1
|
||||||
|
//Have function remove
|
||||||
|
CMAKE_HAVE_REMOVE:INTERNAL=1
|
||||||
|
//Have function shmat
|
||||||
|
CMAKE_HAVE_SHMAT:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/lqs/UnitreecameraSDK
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||||
|
//Have library ICE
|
||||||
|
CMAKE_LIB_ICE_HAS_ICECONNECTIONNUMBER: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=2
|
||||||
|
//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 GLUT
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_GLUT:INTERNAL=[/usr/lib/x86_64-linux-gnu/libglut.so][/usr/include][v()]
|
||||||
|
//Details about finding OpenCV
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_OpenCV:INTERNAL=[/home/lqs/opencv-4.6.0/build][v4.6.0(4)]
|
||||||
|
//Details about finding OpenGL
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libOpenGL.so][/usr/lib/x86_64-linux-gnu/libGLX.so][/usr/include][c ][v()]
|
||||||
|
//Details about finding X11
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_X11:INTERNAL=[/usr/lib/x86_64-linux-gnu/libX11.so][/usr/include]
|
||||||
|
//ADVANCED property for variable: GLUT_INCLUDE_DIR
|
||||||
|
GLUT_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: GLUT_Xi_LIBRARY
|
||||||
|
GLUT_Xi_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: GLUT_Xmu_LIBRARY
|
||||||
|
GLUT_Xmu_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: GLUT_glut_LIBRARY
|
||||||
|
GLUT_glut_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_EGL_INCLUDE_DIR
|
||||||
|
OPENGL_EGL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_GLX_INCLUDE_DIR
|
||||||
|
OPENGL_GLX_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_INCLUDE_DIR
|
||||||
|
OPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_egl_LIBRARY
|
||||||
|
OPENGL_egl_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_gl_LIBRARY
|
||||||
|
OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_glu_LIBRARY
|
||||||
|
OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_glx_LIBRARY
|
||||||
|
OPENGL_glx_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_opengl_LIBRARY
|
||||||
|
OPENGL_opengl_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: OPENGL_xmesa_INCLUDE_DIR
|
||||||
|
OPENGL_xmesa_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_INCLUDE_PATH
|
||||||
|
X11_ICE_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_LIB
|
||||||
|
X11_ICE_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//Have library /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
X11_LIB_X11_SOLO:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_INCLUDE_PATH
|
||||||
|
X11_SM_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_LIB
|
||||||
|
X11_SM_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_INCLUDE_PATH
|
||||||
|
X11_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_LIB
|
||||||
|
X11_X11_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_INCLUDE_PATH
|
||||||
|
X11_XRes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_LIB
|
||||||
|
X11_XRes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XShm_INCLUDE_PATH
|
||||||
|
X11_XShm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XSync_INCLUDE_PATH
|
||||||
|
X11_XSync_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XTest_INCLUDE_PATH
|
||||||
|
X11_XTest_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XTest_LIB
|
||||||
|
X11_XTest_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessrules_INCLUDE_PATH
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessstr_INCLUDE_PATH
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_INCLUDE_PATH
|
||||||
|
X11_Xau_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_LIB
|
||||||
|
X11_Xau_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_INCLUDE_PATH
|
||||||
|
X11_Xcomposite_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_LIB
|
||||||
|
X11_Xcomposite_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_INCLUDE_PATH
|
||||||
|
X11_Xcursor_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_LIB
|
||||||
|
X11_Xcursor_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_INCLUDE_PATH
|
||||||
|
X11_Xdamage_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_LIB
|
||||||
|
X11_Xdamage_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_INCLUDE_PATH
|
||||||
|
X11_Xdmcp_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_LIB
|
||||||
|
X11_Xdmcp_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xext_LIB
|
||||||
|
X11_Xext_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_INCLUDE_PATH
|
||||||
|
X11_Xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_LIB
|
||||||
|
X11_Xfixes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_INCLUDE_PATH
|
||||||
|
X11_Xft_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_LIB
|
||||||
|
X11_Xft_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_INCLUDE_PATH
|
||||||
|
X11_Xi_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_LIB
|
||||||
|
X11_Xi_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_INCLUDE_PATH
|
||||||
|
X11_Xinerama_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_LIB
|
||||||
|
X11_Xinerama_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinput_INCLUDE_PATH
|
||||||
|
X11_Xinput_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinput_LIB
|
||||||
|
X11_Xinput_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkb_INCLUDE_PATH
|
||||||
|
X11_Xkb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkbfile_INCLUDE_PATH
|
||||||
|
X11_Xkbfile_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkbfile_LIB
|
||||||
|
X11_Xkbfile_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkblib_INCLUDE_PATH
|
||||||
|
X11_Xkblib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xlib_INCLUDE_PATH
|
||||||
|
X11_Xlib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_INCLUDE_PATH
|
||||||
|
X11_Xmu_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_LIB
|
||||||
|
X11_Xmu_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_INCLUDE_PATH
|
||||||
|
X11_Xpm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_LIB
|
||||||
|
X11_Xpm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_INCLUDE_PATH
|
||||||
|
X11_Xrandr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_LIB
|
||||||
|
X11_Xrandr_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_INCLUDE_PATH
|
||||||
|
X11_Xrender_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_LIB
|
||||||
|
X11_Xrender_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xscreensaver_INCLUDE_PATH
|
||||||
|
X11_Xscreensaver_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xscreensaver_LIB
|
||||||
|
X11_Xscreensaver_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xshape_INCLUDE_PATH
|
||||||
|
X11_Xshape_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_INCLUDE_PATH
|
||||||
|
X11_Xt_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_LIB
|
||||||
|
X11_Xt_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xutil_INCLUDE_PATH
|
||||||
|
X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_INCLUDE_PATH
|
||||||
|
X11_Xv_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_LIB
|
||||||
|
X11_Xv_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86misc_LIB
|
||||||
|
X11_Xxf86misc_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86vm_LIB
|
||||||
|
X11_Xxf86vm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_dpms_INCLUDE_PATH
|
||||||
|
X11_dpms_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xf86misc_INCLUDE_PATH
|
||||||
|
X11_xf86misc_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xf86vmode_INCLUDE_PATH
|
||||||
|
X11_xf86vmode_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
|
@ -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 "")
|
@ -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 "")
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-4.15.0-213-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-213-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-4.15.0-213-generic")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "4.15.0-213-generic")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
@ -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
|
Binary file not shown.
@ -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;
|
||||||
|
}
|
Binary file not shown.
@ -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/lqs/UnitreecameraSDK")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/lqs/UnitreecameraSDK/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})
|
@ -0,0 +1,717 @@
|
|||||||
|
The system is: Linux - 4.15.0-213-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/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
|
||||||
|
|
||||||
|
Determining if the C compiler works passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_f91ff/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_f91ff.dir/build.make CMakeFiles/cmTC_f91ff.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_f91ff.dir/testCCompiler.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_f91ff.dir/testCCompiler.c.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||||
|
Linking C executable cmTC_f91ff
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f91ff.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_f91ff.dir/testCCompiler.c.o -o cmTC_f91ff
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_d9e5a/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_d9e5a.dir/build.make CMakeFiles/cmTC_d9e5a.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
|
||||||
|
Linking C executable cmTC_d9e5a
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d9e5a.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o -o cmTC_d9e5a
|
||||||
|
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_d9e5a' '-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/ccjSRj8n.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_d9e5a /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_d9e5a.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_d9e5a' '-mtune=generic' '-march=x86-64'
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_d9e5a/fast"]
|
||||||
|
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_d9e5a.dir/build.make CMakeFiles/cmTC_d9e5a.dir/build]
|
||||||
|
ignore line: [make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”]
|
||||||
|
ignore line: [Building C object CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o]
|
||||||
|
ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Linking C executable cmTC_d9e5a]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d9e5a.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_d9e5a.dir/CMakeCCompilerABI.c.o -o cmTC_d9e5a ]
|
||||||
|
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_d9e5a' '-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/ccjSRj8n.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_d9e5a /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_d9e5a.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/ccjSRj8n.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_d9e5a] ==> 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_d9e5a.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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_bd119/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_bd119.dir/build.make CMakeFiles/cmTC_bd119.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_bd119.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_bd119.dir/feature_tests.c.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_bd119
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bd119.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_bd119.dir/feature_tests.c.o -o cmTC_bd119
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_a2324/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_a2324.dir/build.make CMakeFiles/cmTC_a2324.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_a2324.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_a2324.dir/feature_tests.c.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_a2324
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a2324.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_a2324.dir/feature_tests.c.o -o cmTC_a2324
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_10063/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_10063.dir/build.make CMakeFiles/cmTC_10063.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_10063.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_10063.dir/feature_tests.c.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_10063
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_10063.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_10063.dir/feature_tests.c.o -o cmTC_10063
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_adae1/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_adae1.dir/build.make CMakeFiles/cmTC_adae1.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_adae1.dir/testCXXCompiler.cxx.o
|
||||||
|
/usr/bin/c++ -o CMakeFiles/cmTC_adae1.dir/testCXXCompiler.cxx.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
||||||
|
Linking CXX executable cmTC_adae1
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_adae1.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_adae1.dir/testCXXCompiler.cxx.o -o cmTC_adae1
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_a9621/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_a9621.dir/build.make CMakeFiles/cmTC_a9621.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o
|
||||||
|
/usr/bin/c++ -o CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
Linking CXX executable cmTC_a9621
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a9621.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a9621
|
||||||
|
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_a9621' '-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/ccE8ek8K.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_a9621 /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_a9621.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_a9621' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_a9621/fast"]
|
||||||
|
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_a9621.dir/build.make CMakeFiles/cmTC_a9621.dir/build]
|
||||||
|
ignore line: [make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”]
|
||||||
|
ignore line: [Building CXX object CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o]
|
||||||
|
ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
|
ignore line: [Linking CXX executable cmTC_a9621]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a9621.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_a9621.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a9621 ]
|
||||||
|
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_a9621' '-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/ccE8ek8K.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_a9621 /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_a9621.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/ccE8ek8K.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_a9621] ==> 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_a9621.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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_230e0/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_230e0.dir/build.make CMakeFiles/cmTC_230e0.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_230e0.dir/feature_tests.cxx.o
|
||||||
|
/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_230e0.dir/feature_tests.cxx.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.cxx
|
||||||
|
Linking CXX executable cmTC_230e0
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_230e0.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_230e0.dir/feature_tests.cxx.o -o cmTC_230e0
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_133ec/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_133ec.dir/build.make CMakeFiles/cmTC_133ec.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_133ec.dir/feature_tests.cxx.o
|
||||||
|
/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_133ec.dir/feature_tests.cxx.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.cxx
|
||||||
|
Linking CXX executable cmTC_133ec
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_133ec.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_133ec.dir/feature_tests.cxx.o -o cmTC_133ec
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_2ad0b/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_2ad0b.dir/build.make CMakeFiles/cmTC_2ad0b.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_2ad0b.dir/feature_tests.cxx.o
|
||||||
|
/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_2ad0b.dir/feature_tests.cxx.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.cxx
|
||||||
|
Linking CXX executable cmTC_2ad0b
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ad0b.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_2ad0b.dir/feature_tests.cxx.o -o cmTC_2ad0b
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_ba2b2/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_ba2b2.dir/build.make CMakeFiles/cmTC_ba2b2.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building CXX object CMakeFiles/cmTC_ba2b2.dir/feature_tests.cxx.o
|
||||||
|
/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_ba2b2.dir/feature_tests.cxx.o -c /home/lqs/UnitreecameraSDK/build/CMakeFiles/feature_tests.cxx
|
||||||
|
Linking CXX executable cmTC_ba2b2
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ba2b2.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_ba2b2.dir/feature_tests.cxx.o -o cmTC_ba2b2
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/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 function XOpenDisplay exists in the /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_c18c9/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_c18c9.dir/build.make CMakeFiles/cmTC_c18c9.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_c18c9.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay -o CMakeFiles/cmTC_c18c9.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_c18c9
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c18c9.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay -rdynamic CMakeFiles/cmTC_c18c9.dir/CheckFunctionExists.c.o -o cmTC_c18c9 /usr/lib/x86_64-linux-gnu/libX11.so /usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function gethostbyname exists passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_b8e2e/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_b8e2e.dir/build.make CMakeFiles/cmTC_b8e2e.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_b8e2e.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname -o CMakeFiles/cmTC_b8e2e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_b8e2e
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b8e2e.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname -rdynamic CMakeFiles/cmTC_b8e2e.dir/CheckFunctionExists.c.o -o cmTC_b8e2e
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function connect exists passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_c29b5/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_c29b5.dir/build.make CMakeFiles/cmTC_c29b5.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_c29b5.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect -o CMakeFiles/cmTC_c29b5.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_c29b5
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c29b5.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect -rdynamic CMakeFiles/cmTC_c29b5.dir/CheckFunctionExists.c.o -o cmTC_c29b5
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function remove exists passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_9f6f8/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_9f6f8.dir/build.make CMakeFiles/cmTC_9f6f8.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_9f6f8.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove -o CMakeFiles/cmTC_9f6f8.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_9f6f8
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9f6f8.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove -rdynamic CMakeFiles/cmTC_9f6f8.dir/CheckFunctionExists.c.o -o cmTC_9f6f8
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function shmat exists passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_d46bc/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_d46bc.dir/build.make CMakeFiles/cmTC_d46bc.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_d46bc.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat -o CMakeFiles/cmTC_d46bc.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_d46bc
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d46bc.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat -rdynamic CMakeFiles/cmTC_d46bc.dir/CheckFunctionExists.c.o -o cmTC_d46bc
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function IceConnectionNumber exists in the ICE passed with the following output:
|
||||||
|
Change Dir: /home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_a5812/fast"
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_a5812.dir/build.make CMakeFiles/cmTC_a5812.dir/build
|
||||||
|
make[1]: 进入目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
Building C object CMakeFiles/cmTC_a5812.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber -o CMakeFiles/cmTC_a5812.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_a5812
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5812.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber -rdynamic CMakeFiles/cmTC_a5812.dir/CheckFunctionExists.c.o -o cmTC_a5812 -lICE
|
||||||
|
make[1]: 离开目录“/home/lqs/UnitreecameraSDK/build/CMakeFiles/CMakeTmp”
|
||||||
|
|
||||||
|
|
@ -0,0 +1,64 @@
|
|||||||
|
# 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"
|
||||||
|
"../CMakeLists.txt"
|
||||||
|
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.10.2/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/3.10.2/CMakeSystem.cmake"
|
||||||
|
"../examples/CMakeLists.txt"
|
||||||
|
"/home/lqs/opencv-4.6.0/build/OpenCVConfig-version.cmake"
|
||||||
|
"/home/lqs/opencv-4.6.0/build/OpenCVConfig.cmake"
|
||||||
|
"/home/lqs/opencv-4.6.0/build/OpenCVModules.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/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/CheckFunctionExists.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/CheckLibraryExists.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/FindGLUT.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/FindOpenGL.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/FindPackageMessage.cmake"
|
||||||
|
"/usr/share/cmake-3.10/Modules/FindX11.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"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
"examples/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"examples/CMakeFiles/example_getDepthFrame.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_getRawFrame.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_getimagetrans.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_getPointCloud.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_getCalibParamsFile.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_getRectFrame.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/example_putImagetrans.dir/DependInfo.cmake"
|
||||||
|
)
|
@ -0,0 +1,360 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Directory level rules for directory examples
|
||||||
|
|
||||||
|
# Convenience name for "all" pass in the directory.
|
||||||
|
examples/all: examples/CMakeFiles/example_getDepthFrame.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_getRawFrame.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_getimagetrans.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_getPointCloud.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_getCalibParamsFile.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_getRectFrame.dir/all
|
||||||
|
examples/all: examples/CMakeFiles/example_putImagetrans.dir/all
|
||||||
|
|
||||||
|
.PHONY : examples/all
|
||||||
|
|
||||||
|
# Convenience name for "clean" pass in the directory.
|
||||||
|
examples/clean: examples/CMakeFiles/example_getDepthFrame.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_getRawFrame.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_getimagetrans.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_getPointCloud.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_getCalibParamsFile.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_getRectFrame.dir/clean
|
||||||
|
examples/clean: examples/CMakeFiles/example_putImagetrans.dir/clean
|
||||||
|
|
||||||
|
.PHONY : examples/clean
|
||||||
|
|
||||||
|
# Convenience name for "preinstall" pass in the directory.
|
||||||
|
examples/preinstall:
|
||||||
|
|
||||||
|
.PHONY : examples/preinstall
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getDepthFrame.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getDepthFrame.dir/build.make examples/CMakeFiles/example_getDepthFrame.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getDepthFrame.dir/build.make examples/CMakeFiles/example_getDepthFrame.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=3,4 "Built target example_getDepthFrame"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getDepthFrame.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getDepthFrame.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getDepthFrame: examples/CMakeFiles/example_getDepthFrame.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getDepthFrame
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getDepthFrame.dir/build.make examples/CMakeFiles/example_getDepthFrame.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getDepthFrame.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getRawFrame.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRawFrame.dir/build.make examples/CMakeFiles/example_getRawFrame.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRawFrame.dir/build.make examples/CMakeFiles/example_getRawFrame.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=9,10 "Built target example_getRawFrame"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getRawFrame.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getRawFrame.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getRawFrame: examples/CMakeFiles/example_getRawFrame.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getRawFrame
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRawFrame.dir/build.make examples/CMakeFiles/example_getRawFrame.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getRawFrame.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getimagetrans.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getimagetrans.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getimagetrans.dir/build.make examples/CMakeFiles/example_getimagetrans.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getimagetrans.dir/build.make examples/CMakeFiles/example_getimagetrans.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=13,14 "Built target example_getimagetrans"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getimagetrans.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getimagetrans.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getimagetrans.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getimagetrans.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getimagetrans.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getimagetrans: examples/CMakeFiles/example_getimagetrans.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getimagetrans
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getimagetrans.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getimagetrans.dir/build.make examples/CMakeFiles/example_getimagetrans.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getimagetrans.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getimagetrans.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getPointCloud.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=5,6,7,8 "Built target example_getPointCloud"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getPointCloud.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 4
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getPointCloud.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getPointCloud
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getPointCloud.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getCalibParamsFile.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getCalibParamsFile.dir/build.make examples/CMakeFiles/example_getCalibParamsFile.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getCalibParamsFile.dir/build.make examples/CMakeFiles/example_getCalibParamsFile.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=1,2 "Built target example_getCalibParamsFile"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getCalibParamsFile.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getCalibParamsFile.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getCalibParamsFile: examples/CMakeFiles/example_getCalibParamsFile.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getCalibParamsFile
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getCalibParamsFile.dir/build.make examples/CMakeFiles/example_getCalibParamsFile.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getCalibParamsFile.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_getRectFrame.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRectFrame.dir/build.make examples/CMakeFiles/example_getRectFrame.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRectFrame.dir/build.make examples/CMakeFiles/example_getRectFrame.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=11,12 "Built target example_getRectFrame"
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_getRectFrame.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_getRectFrame.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_getRectFrame: examples/CMakeFiles/example_getRectFrame.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_getRectFrame
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRectFrame.dir/build.make examples/CMakeFiles/example_getRectFrame.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_getRectFrame.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target examples/CMakeFiles/example_putImagetrans.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
examples/CMakeFiles/example_putImagetrans.dir/all:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_putImagetrans.dir/build.make examples/CMakeFiles/example_putImagetrans.dir/depend
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_putImagetrans.dir/build.make examples/CMakeFiles/example_putImagetrans.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=15,16 "Built target example_putImagetrans"
|
||||||
|
.PHONY : examples/CMakeFiles/example_putImagetrans.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: examples/CMakeFiles/example_putImagetrans.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
examples/CMakeFiles/example_putImagetrans.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 2
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/example_putImagetrans.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles 0
|
||||||
|
.PHONY : examples/CMakeFiles/example_putImagetrans.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
example_putImagetrans: examples/CMakeFiles/example_putImagetrans.dir/rule
|
||||||
|
|
||||||
|
.PHONY : example_putImagetrans
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
examples/CMakeFiles/example_putImagetrans.dir/clean:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_putImagetrans.dir/build.make examples/CMakeFiles/example_putImagetrans.dir/clean
|
||||||
|
.PHONY : examples/CMakeFiles/example_putImagetrans.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: examples/CMakeFiles/example_putImagetrans.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
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
/home/lqs/UnitreecameraSDK/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/CMakeFiles/edit_cache.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/edit_cache.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getDepthFrame.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRawFrame.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getimagetrans.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getPointCloud.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getCalibParamsFile.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRectFrame.dir
|
||||||
|
/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_putImagetrans.dir
|
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
Binary file not shown.
@ -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]; }
|
@ -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]; }
|
@ -0,0 +1 @@
|
|||||||
|
16
|
@ -0,0 +1,232 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Targets provided globally by CMake.
|
||||||
|
|
||||||
|
# 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 "Running CMake cache editor..."
|
||||||
|
/usr/bin/cmake-gui -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.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
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/build/CMakeFiles /home/lqs/UnitreecameraSDK/build/CMakeFiles/progress.marks
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/lqs/UnitreecameraSDK/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 example_getDepthFrame
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getDepthFrame: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getDepthFrame
|
||||||
|
.PHONY : example_getDepthFrame
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getDepthFrame/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getDepthFrame.dir/build.make examples/CMakeFiles/example_getDepthFrame.dir/build
|
||||||
|
.PHONY : example_getDepthFrame/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_getRawFrame
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getRawFrame: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getRawFrame
|
||||||
|
.PHONY : example_getRawFrame
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getRawFrame/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRawFrame.dir/build.make examples/CMakeFiles/example_getRawFrame.dir/build
|
||||||
|
.PHONY : example_getRawFrame/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_getimagetrans
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getimagetrans: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getimagetrans
|
||||||
|
.PHONY : example_getimagetrans
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getimagetrans/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getimagetrans.dir/build.make examples/CMakeFiles/example_getimagetrans.dir/build
|
||||||
|
.PHONY : example_getimagetrans/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_getPointCloud
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getPointCloud: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getPointCloud
|
||||||
|
.PHONY : example_getPointCloud
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getPointCloud/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/build
|
||||||
|
.PHONY : example_getPointCloud/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_getCalibParamsFile
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getCalibParamsFile: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getCalibParamsFile
|
||||||
|
.PHONY : example_getCalibParamsFile
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getCalibParamsFile/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getCalibParamsFile.dir/build.make examples/CMakeFiles/example_getCalibParamsFile.dir/build
|
||||||
|
.PHONY : example_getCalibParamsFile/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_getRectFrame
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_getRectFrame: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_getRectFrame
|
||||||
|
.PHONY : example_getRectFrame
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_getRectFrame/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRectFrame.dir/build.make examples/CMakeFiles/example_getRectFrame.dir/build
|
||||||
|
.PHONY : example_getRectFrame/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named example_putImagetrans
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
example_putImagetrans: cmake_check_build_system
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 example_putImagetrans
|
||||||
|
.PHONY : example_putImagetrans
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
example_putImagetrans/fast:
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_putImagetrans.dir/build.make examples/CMakeFiles/example_putImagetrans.dir/build
|
||||||
|
.PHONY : example_putImagetrans/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 "... rebuild_cache"
|
||||||
|
@echo "... edit_cache"
|
||||||
|
@echo "... example_getDepthFrame"
|
||||||
|
@echo "... example_getRawFrame"
|
||||||
|
@echo "... example_getimagetrans"
|
||||||
|
@echo "... example_getPointCloud"
|
||||||
|
@echo "... example_getCalibParamsFile"
|
||||||
|
@echo "... example_getRectFrame"
|
||||||
|
@echo "... example_putImagetrans"
|
||||||
|
.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
|
||||||
|
|
@ -0,0 +1,55 @@
|
|||||||
|
# Install script for directory: /home/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||||
|
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/lqs/UnitreecameraSDK/build/examples/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/lqs/UnitreecameraSDK/build/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
@ -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/lqs/UnitreecameraSDK")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/lqs/UnitreecameraSDK/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})
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,44 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK/examples/example_getCalibParamsFile.cc" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# Preprocessor definitions for this target.
|
||||||
|
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||||
|
"OPENCV_VERSION_4"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
|
"../include"
|
||||||
|
"/home/lqs/opencv-4.6.0/build"
|
||||||
|
"/home/lqs/opencv-4.6.0/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/core/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/flann/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgproc/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ml/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/photo/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/dnn/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/features2d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgcodecs/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/videoio/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/calib3d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/highgui/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/objdetect/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/stitching/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/video/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/world/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ts/include"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,128 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/example_getCalibParamsFile.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/example_getCalibParamsFile.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/example_getCalibParamsFile.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: examples/CMakeFiles/example_getCalibParamsFile.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: ../examples/example_getCalibParamsFile.cc
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o -c /home/lqs/UnitreecameraSDK/examples/example_getCalibParamsFile.cc
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/example_getCalibParamsFile.cc > CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/example_getCalibParamsFile.cc -o CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.provides: examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getCalibParamsFile.dir/build.make examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.provides.build: examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o
|
||||||
|
|
||||||
|
|
||||||
|
# Object files for target example_getCalibParamsFile
|
||||||
|
example_getCalibParamsFile_OBJECTS = \
|
||||||
|
"CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o"
|
||||||
|
|
||||||
|
# External object files for target example_getCalibParamsFile
|
||||||
|
example_getCalibParamsFile_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
../bins/example_getCalibParamsFile: examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o
|
||||||
|
../bins/example_getCalibParamsFile: examples/CMakeFiles/example_getCalibParamsFile.dir/build.make
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getCalibParamsFile: examples/CMakeFiles/example_getCalibParamsFile.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../../bins/example_getCalibParamsFile"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example_getCalibParamsFile.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/build: ../bins/example_getCalibParamsFile
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/requires: examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o.requires
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/clean:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/example_getCalibParamsFile.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/depend:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lqs/UnitreecameraSDK /home/lqs/UnitreecameraSDK/examples /home/lqs/UnitreecameraSDK/build /home/lqs/UnitreecameraSDK/build/examples /home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getCalibParamsFile.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/example_getCalibParamsFile.dir/depend
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o"
|
||||||
|
"../../bins/example_getCalibParamsFile.pdb"
|
||||||
|
"../../bins/example_getCalibParamsFile"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/example_getCalibParamsFile.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o
|
||||||
|
../include/StereoCameraCommon.hpp
|
||||||
|
../include/SystemLog.hpp
|
||||||
|
../include/UnitreeCameraSDK.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/example_getCalibParamsFile.cc
|
||||||
|
/home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: ../include/StereoCameraCommon.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: ../include/SystemLog.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: ../include/UnitreeCameraSDK.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: ../examples/example_getCalibParamsFile.cc
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
examples/CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o: /home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
|
Binary file not shown.
@ -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 = -std=c++11 -pthread -std=c++11 -pthread -std=gnu++11
|
||||||
|
|
||||||
|
CXX_DEFINES = -DOPENCV_VERSION_4
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/lqs/UnitreecameraSDK/include -isystem /home/lqs/opencv-4.6.0/build -isystem /home/lqs/opencv-4.6.0/include -isystem /home/lqs/opencv-4.6.0/modules/core/include -isystem /home/lqs/opencv-4.6.0/modules/flann/include -isystem /home/lqs/opencv-4.6.0/modules/imgproc/include -isystem /home/lqs/opencv-4.6.0/modules/ml/include -isystem /home/lqs/opencv-4.6.0/modules/photo/include -isystem /home/lqs/opencv-4.6.0/modules/dnn/include -isystem /home/lqs/opencv-4.6.0/modules/features2d/include -isystem /home/lqs/opencv-4.6.0/modules/imgcodecs/include -isystem /home/lqs/opencv-4.6.0/modules/videoio/include -isystem /home/lqs/opencv-4.6.0/modules/calib3d/include -isystem /home/lqs/opencv-4.6.0/modules/highgui/include -isystem /home/lqs/opencv-4.6.0/modules/objdetect/include -isystem /home/lqs/opencv-4.6.0/modules/stitching/include -isystem /home/lqs/opencv-4.6.0/modules/video/include -isystem /home/lqs/opencv-4.6.0/modules/world/include -isystem /home/lqs/opencv-4.6.0/modules/ts/include
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -std=c++11 -pthread -std=c++11 -pthread -rdynamic CMakeFiles/example_getCalibParamsFile.dir/example_getCalibParamsFile.cc.o -o ../../bins/example_getCalibParamsFile -L/home/lqs/UnitreecameraSDK/lib/amd64 -Wl,-rpath,/home/lqs/UnitreecameraSDK/lib/amd64:/home/lqs/opencv-4.6.0/build/lib -lunitree_camera -ltstc_V4L2_xu_camera -ludev -lsystemlog /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
@ -0,0 +1,3 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 1
|
||||||
|
CMAKE_PROGRESS_2 = 2
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,44 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK/examples/example_getDepthFrame.cc" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# Preprocessor definitions for this target.
|
||||||
|
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||||
|
"OPENCV_VERSION_4"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
|
"../include"
|
||||||
|
"/home/lqs/opencv-4.6.0/build"
|
||||||
|
"/home/lqs/opencv-4.6.0/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/core/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/flann/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgproc/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ml/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/photo/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/dnn/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/features2d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgcodecs/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/videoio/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/calib3d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/highgui/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/objdetect/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/stitching/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/video/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/world/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ts/include"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,128 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/example_getDepthFrame.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/example_getDepthFrame.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/example_getDepthFrame.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: examples/CMakeFiles/example_getDepthFrame.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: ../examples/example_getDepthFrame.cc
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o -c /home/lqs/UnitreecameraSDK/examples/example_getDepthFrame.cc
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/example_getDepthFrame.cc > CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/example_getDepthFrame.cc -o CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.provides: examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getDepthFrame.dir/build.make examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.provides.build: examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o
|
||||||
|
|
||||||
|
|
||||||
|
# Object files for target example_getDepthFrame
|
||||||
|
example_getDepthFrame_OBJECTS = \
|
||||||
|
"CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o"
|
||||||
|
|
||||||
|
# External object files for target example_getDepthFrame
|
||||||
|
example_getDepthFrame_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
../bins/example_getDepthFrame: examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o
|
||||||
|
../bins/example_getDepthFrame: examples/CMakeFiles/example_getDepthFrame.dir/build.make
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getDepthFrame: examples/CMakeFiles/example_getDepthFrame.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../../bins/example_getDepthFrame"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example_getDepthFrame.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/build: ../bins/example_getDepthFrame
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/requires: examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o.requires
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/clean:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/example_getDepthFrame.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/depend:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lqs/UnitreecameraSDK /home/lqs/UnitreecameraSDK/examples /home/lqs/UnitreecameraSDK/build /home/lqs/UnitreecameraSDK/build/examples /home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getDepthFrame.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/example_getDepthFrame.dir/depend
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o"
|
||||||
|
"../../bins/example_getDepthFrame.pdb"
|
||||||
|
"../../bins/example_getDepthFrame"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/example_getDepthFrame.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o
|
||||||
|
../include/StereoCameraCommon.hpp
|
||||||
|
../include/SystemLog.hpp
|
||||||
|
../include/UnitreeCameraSDK.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/example_getDepthFrame.cc
|
||||||
|
/home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: ../include/StereoCameraCommon.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: ../include/SystemLog.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: ../include/UnitreeCameraSDK.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: ../examples/example_getDepthFrame.cc
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
examples/CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o: /home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
|
Binary file not shown.
@ -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 = -std=c++11 -pthread -std=c++11 -pthread -std=gnu++11
|
||||||
|
|
||||||
|
CXX_DEFINES = -DOPENCV_VERSION_4
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/lqs/UnitreecameraSDK/include -isystem /home/lqs/opencv-4.6.0/build -isystem /home/lqs/opencv-4.6.0/include -isystem /home/lqs/opencv-4.6.0/modules/core/include -isystem /home/lqs/opencv-4.6.0/modules/flann/include -isystem /home/lqs/opencv-4.6.0/modules/imgproc/include -isystem /home/lqs/opencv-4.6.0/modules/ml/include -isystem /home/lqs/opencv-4.6.0/modules/photo/include -isystem /home/lqs/opencv-4.6.0/modules/dnn/include -isystem /home/lqs/opencv-4.6.0/modules/features2d/include -isystem /home/lqs/opencv-4.6.0/modules/imgcodecs/include -isystem /home/lqs/opencv-4.6.0/modules/videoio/include -isystem /home/lqs/opencv-4.6.0/modules/calib3d/include -isystem /home/lqs/opencv-4.6.0/modules/highgui/include -isystem /home/lqs/opencv-4.6.0/modules/objdetect/include -isystem /home/lqs/opencv-4.6.0/modules/stitching/include -isystem /home/lqs/opencv-4.6.0/modules/video/include -isystem /home/lqs/opencv-4.6.0/modules/world/include -isystem /home/lqs/opencv-4.6.0/modules/ts/include
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -std=c++11 -pthread -std=c++11 -pthread -rdynamic CMakeFiles/example_getDepthFrame.dir/example_getDepthFrame.cc.o -o ../../bins/example_getDepthFrame -L/home/lqs/UnitreecameraSDK/lib/amd64 -Wl,-rpath,/home/lqs/UnitreecameraSDK/lib/amd64:/home/lqs/opencv-4.6.0/build/lib -lunitree_camera -ltstc_V4L2_xu_camera -ludev -lsystemlog /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
@ -0,0 +1,3 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 3
|
||||||
|
CMAKE_PROGRESS_2 = 4
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,46 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK/examples/example_getPointCloud.cc" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o"
|
||||||
|
"/home/lqs/UnitreecameraSDK/examples/glViewer/glwindow_x11.cpp" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o"
|
||||||
|
"/home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.cpp" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# Preprocessor definitions for this target.
|
||||||
|
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||||
|
"OPENCV_VERSION_4"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
|
"../include"
|
||||||
|
"/home/lqs/opencv-4.6.0/build"
|
||||||
|
"/home/lqs/opencv-4.6.0/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/core/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/flann/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgproc/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ml/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/photo/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/dnn/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/features2d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgcodecs/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/videoio/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/calib3d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/highgui/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/objdetect/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/stitching/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/video/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/world/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ts/include"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,191 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/example_getPointCloud.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/example_getPointCloud.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/example_getPointCloud.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: examples/CMakeFiles/example_getPointCloud.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../examples/example_getPointCloud.cc
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o -c /home/lqs/UnitreecameraSDK/examples/example_getPointCloud.cc
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/example_getPointCloud.cc > CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/example_getPointCloud.cc -o CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.provides: examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.provides.build: examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o
|
||||||
|
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o: examples/CMakeFiles/example_getPointCloud.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o: ../examples/glViewer/glwindow_x11.cpp
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o -c /home/lqs/UnitreecameraSDK/examples/glViewer/glwindow_x11.cpp
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/glViewer/glwindow_x11.cpp > CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/glViewer/glwindow_x11.cpp -o CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.provides: examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.provides.build: examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o: examples/CMakeFiles/example_getPointCloud.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o: ../examples/glViewer/scenewindow.cpp
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o -c /home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.cpp
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.cpp > CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.cpp -o CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.provides: examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getPointCloud.dir/build.make examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.provides.build: examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o
|
||||||
|
|
||||||
|
|
||||||
|
# Object files for target example_getPointCloud
|
||||||
|
example_getPointCloud_OBJECTS = \
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o" \
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o" \
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target example_getPointCloud
|
||||||
|
example_getPointCloud_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
../bins/example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o
|
||||||
|
../bins/example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o
|
||||||
|
../bins/example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o
|
||||||
|
../bins/example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/build.make
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libGL.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libGLU.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libglut.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libXmu.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libXi.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libSM.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libICE.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libX11.so
|
||||||
|
../bins/example_getPointCloud: /usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
../bins/example_getPointCloud: examples/CMakeFiles/example_getPointCloud.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable ../../bins/example_getPointCloud"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example_getPointCloud.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/build: ../bins/example_getPointCloud
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/requires: examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o.requires
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/requires: examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o.requires
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/requires: examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o.requires
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/clean:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/example_getPointCloud.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/depend:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lqs/UnitreecameraSDK /home/lqs/UnitreecameraSDK/examples /home/lqs/UnitreecameraSDK/build /home/lqs/UnitreecameraSDK/build/examples /home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getPointCloud.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/example_getPointCloud.dir/depend
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o"
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o"
|
||||||
|
"CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o"
|
||||||
|
"../../bins/example_getPointCloud.pdb"
|
||||||
|
"../../bins/example_getPointCloud"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/example_getPointCloud.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,122 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o
|
||||||
|
../include/StereoCameraCommon.hpp
|
||||||
|
../include/SystemLog.hpp
|
||||||
|
../include/UnitreeCameraSDK.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/example_getPointCloud.cc
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/glwindow.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/glwindow.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/glwindow_x11.cpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/glwindow.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.cpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/glViewer/scenewindow.hpp
|
@ -0,0 +1,122 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../include/StereoCameraCommon.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../include/SystemLog.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../include/UnitreeCameraSDK.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../examples/example_getPointCloud.cc
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../examples/glViewer/glwindow.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: ../examples/glViewer/scenewindow.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o: /home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o: ../examples/glViewer/glwindow.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o: ../examples/glViewer/glwindow_x11.cpp
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o: ../examples/glViewer/glwindow.hpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o: ../examples/glViewer/scenewindow.cpp
|
||||||
|
examples/CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o: ../examples/glViewer/scenewindow.hpp
|
||||||
|
|
Binary file not shown.
@ -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 = -std=c++11 -pthread -std=c++11 -pthread -std=gnu++11
|
||||||
|
|
||||||
|
CXX_DEFINES = -DOPENCV_VERSION_4
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/lqs/UnitreecameraSDK/include -isystem /home/lqs/opencv-4.6.0/build -isystem /home/lqs/opencv-4.6.0/include -isystem /home/lqs/opencv-4.6.0/modules/core/include -isystem /home/lqs/opencv-4.6.0/modules/flann/include -isystem /home/lqs/opencv-4.6.0/modules/imgproc/include -isystem /home/lqs/opencv-4.6.0/modules/ml/include -isystem /home/lqs/opencv-4.6.0/modules/photo/include -isystem /home/lqs/opencv-4.6.0/modules/dnn/include -isystem /home/lqs/opencv-4.6.0/modules/features2d/include -isystem /home/lqs/opencv-4.6.0/modules/imgcodecs/include -isystem /home/lqs/opencv-4.6.0/modules/videoio/include -isystem /home/lqs/opencv-4.6.0/modules/calib3d/include -isystem /home/lqs/opencv-4.6.0/modules/highgui/include -isystem /home/lqs/opencv-4.6.0/modules/objdetect/include -isystem /home/lqs/opencv-4.6.0/modules/stitching/include -isystem /home/lqs/opencv-4.6.0/modules/video/include -isystem /home/lqs/opencv-4.6.0/modules/world/include -isystem /home/lqs/opencv-4.6.0/modules/ts/include
|
||||||
|
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -std=c++11 -pthread -std=c++11 -pthread -rdynamic CMakeFiles/example_getPointCloud.dir/example_getPointCloud.cc.o CMakeFiles/example_getPointCloud.dir/glViewer/glwindow_x11.cpp.o CMakeFiles/example_getPointCloud.dir/glViewer/scenewindow.cpp.o -o ../../bins/example_getPointCloud -L/home/lqs/UnitreecameraSDK/lib/amd64 -Wl,-rpath,/home/lqs/UnitreecameraSDK/lib/amd64:/home/lqs/opencv-4.6.0/build/lib -lunitree_camera -ltstc_V4L2_xu_camera -ludev -lsystemlog /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 -lGL -lGLU -lglut -lXmu -lXi -lSM -lICE -lX11 -lXext
|
@ -0,0 +1,5 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 5
|
||||||
|
CMAKE_PROGRESS_2 = 6
|
||||||
|
CMAKE_PROGRESS_3 = 7
|
||||||
|
CMAKE_PROGRESS_4 = 8
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,44 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK/examples/example_getRawFrame.cc" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# Preprocessor definitions for this target.
|
||||||
|
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||||
|
"OPENCV_VERSION_4"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
|
"../include"
|
||||||
|
"/home/lqs/opencv-4.6.0/build"
|
||||||
|
"/home/lqs/opencv-4.6.0/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/core/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/flann/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgproc/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ml/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/photo/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/dnn/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/features2d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgcodecs/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/videoio/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/calib3d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/highgui/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/objdetect/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/stitching/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/video/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/world/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ts/include"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,128 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/example_getRawFrame.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/example_getRawFrame.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/example_getRawFrame.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: examples/CMakeFiles/example_getRawFrame.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: ../examples/example_getRawFrame.cc
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o -c /home/lqs/UnitreecameraSDK/examples/example_getRawFrame.cc
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/example_getRawFrame.cc > CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/example_getRawFrame.cc -o CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.provides: examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRawFrame.dir/build.make examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.provides.build: examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o
|
||||||
|
|
||||||
|
|
||||||
|
# Object files for target example_getRawFrame
|
||||||
|
example_getRawFrame_OBJECTS = \
|
||||||
|
"CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o"
|
||||||
|
|
||||||
|
# External object files for target example_getRawFrame
|
||||||
|
example_getRawFrame_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
../bins/example_getRawFrame: examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o
|
||||||
|
../bins/example_getRawFrame: examples/CMakeFiles/example_getRawFrame.dir/build.make
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRawFrame: examples/CMakeFiles/example_getRawFrame.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../../bins/example_getRawFrame"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example_getRawFrame.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/build: ../bins/example_getRawFrame
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/requires: examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o.requires
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/clean:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/example_getRawFrame.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/depend:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lqs/UnitreecameraSDK /home/lqs/UnitreecameraSDK/examples /home/lqs/UnitreecameraSDK/build /home/lqs/UnitreecameraSDK/build/examples /home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRawFrame.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRawFrame.dir/depend
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o"
|
||||||
|
"../../bins/example_getRawFrame.pdb"
|
||||||
|
"../../bins/example_getRawFrame"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/example_getRawFrame.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o
|
||||||
|
../include/StereoCameraCommon.hpp
|
||||||
|
../include/SystemLog.hpp
|
||||||
|
../include/UnitreeCameraSDK.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/example_getRawFrame.cc
|
||||||
|
/home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: ../include/StereoCameraCommon.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: ../include/SystemLog.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: ../include/UnitreeCameraSDK.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: ../examples/example_getRawFrame.cc
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
examples/CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o: /home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
|
Binary file not shown.
@ -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 = -std=c++11 -pthread -std=c++11 -pthread -std=gnu++11
|
||||||
|
|
||||||
|
CXX_DEFINES = -DOPENCV_VERSION_4
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/lqs/UnitreecameraSDK/include -isystem /home/lqs/opencv-4.6.0/build -isystem /home/lqs/opencv-4.6.0/include -isystem /home/lqs/opencv-4.6.0/modules/core/include -isystem /home/lqs/opencv-4.6.0/modules/flann/include -isystem /home/lqs/opencv-4.6.0/modules/imgproc/include -isystem /home/lqs/opencv-4.6.0/modules/ml/include -isystem /home/lqs/opencv-4.6.0/modules/photo/include -isystem /home/lqs/opencv-4.6.0/modules/dnn/include -isystem /home/lqs/opencv-4.6.0/modules/features2d/include -isystem /home/lqs/opencv-4.6.0/modules/imgcodecs/include -isystem /home/lqs/opencv-4.6.0/modules/videoio/include -isystem /home/lqs/opencv-4.6.0/modules/calib3d/include -isystem /home/lqs/opencv-4.6.0/modules/highgui/include -isystem /home/lqs/opencv-4.6.0/modules/objdetect/include -isystem /home/lqs/opencv-4.6.0/modules/stitching/include -isystem /home/lqs/opencv-4.6.0/modules/video/include -isystem /home/lqs/opencv-4.6.0/modules/world/include -isystem /home/lqs/opencv-4.6.0/modules/ts/include
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -std=c++11 -pthread -std=c++11 -pthread -rdynamic CMakeFiles/example_getRawFrame.dir/example_getRawFrame.cc.o -o ../../bins/example_getRawFrame -L/home/lqs/UnitreecameraSDK/lib/amd64 -Wl,-rpath,/home/lqs/UnitreecameraSDK/lib/amd64:/home/lqs/opencv-4.6.0/build/lib -lunitree_camera -ltstc_V4L2_xu_camera -ludev -lsystemlog /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
@ -0,0 +1,3 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 9
|
||||||
|
CMAKE_PROGRESS_2 = 10
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,44 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK/examples/example_getRectFrame.cc" "/home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# Preprocessor definitions for this target.
|
||||||
|
set(CMAKE_TARGET_DEFINITIONS_CXX
|
||||||
|
"OPENCV_VERSION_4"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
|
"../include"
|
||||||
|
"/home/lqs/opencv-4.6.0/build"
|
||||||
|
"/home/lqs/opencv-4.6.0/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/core/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/flann/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgproc/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ml/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/photo/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/dnn/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/features2d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/imgcodecs/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/videoio/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/calib3d/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/highgui/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/objdetect/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/stitching/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/video/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/world/include"
|
||||||
|
"/home/lqs/opencv-4.6.0/modules/ts/include"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,128 @@
|
|||||||
|
# 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/lqs/UnitreecameraSDK
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/lqs/UnitreecameraSDK/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/example_getRectFrame.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/example_getRectFrame.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/example_getRectFrame.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: examples/CMakeFiles/example_getRectFrame.dir/flags.make
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: ../examples/example_getRectFrame.cc
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o -c /home/lqs/UnitreecameraSDK/examples/example_getRectFrame.cc
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.i"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lqs/UnitreecameraSDK/examples/example_getRectFrame.cc > CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.s"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lqs/UnitreecameraSDK/examples/example_getRectFrame.cc -o CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.requires:
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.provides: examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.requires
|
||||||
|
$(MAKE) -f examples/CMakeFiles/example_getRectFrame.dir/build.make examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.provides.build
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.provides
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.provides.build: examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o
|
||||||
|
|
||||||
|
|
||||||
|
# Object files for target example_getRectFrame
|
||||||
|
example_getRectFrame_OBJECTS = \
|
||||||
|
"CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o"
|
||||||
|
|
||||||
|
# External object files for target example_getRectFrame
|
||||||
|
example_getRectFrame_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
../bins/example_getRectFrame: examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o
|
||||||
|
../bins/example_getRectFrame: examples/CMakeFiles/example_getRectFrame.dir/build.make
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
||||||
|
../bins/example_getRectFrame: examples/CMakeFiles/example_getRectFrame.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/lqs/UnitreecameraSDK/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../../bins/example_getRectFrame"
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example_getRectFrame.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/build: ../bins/example_getRectFrame
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/requires: examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o.requires
|
||||||
|
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/requires
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/clean:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/example_getRectFrame.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/depend:
|
||||||
|
cd /home/lqs/UnitreecameraSDK/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lqs/UnitreecameraSDK /home/lqs/UnitreecameraSDK/examples /home/lqs/UnitreecameraSDK/build /home/lqs/UnitreecameraSDK/build/examples /home/lqs/UnitreecameraSDK/build/examples/CMakeFiles/example_getRectFrame.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/example_getRectFrame.dir/depend
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o"
|
||||||
|
"../../bins/example_getRectFrame.pdb"
|
||||||
|
"../../bins/example_getRectFrame"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/example_getRectFrame.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o
|
||||||
|
../include/StereoCameraCommon.hpp
|
||||||
|
../include/SystemLog.hpp
|
||||||
|
../include/UnitreeCameraSDK.hpp
|
||||||
|
/home/lqs/UnitreecameraSDK/examples/example_getRectFrame.cc
|
||||||
|
/home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
/home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
/home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
/home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
@ -0,0 +1,113 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
|
||||||
|
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: ../include/StereoCameraCommon.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: ../include/SystemLog.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: ../include/UnitreeCameraSDK.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: ../examples/example_getRectFrame.cc
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/build/cv_cpu_config.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/build/cvconfig.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/build/opencv2/opencv_modules.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/include/opencv2/opencv.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/calib3d/include/opencv2/calib3d.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/affine.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/async.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/base.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/bufferpool.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/check.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cuda_types.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_dispatch.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cv_cpu_helper.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvdef.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/cvstd_wrapper.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/fast_math.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/interface.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/hal/msa_macros.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/mat.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/matx.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/neon_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/operations.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/optim.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/ovx.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/persistence.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/saturate.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/traits.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/types.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utility.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/instrumentation.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/utils/tls.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/version.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/core/include/opencv2/core/vsx_utils.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dict.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/dnn.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/layer.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/utils/inference_engine.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/dnn/include/opencv2/dnn/version.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/features2d/include/opencv2/features2d.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/all_indices.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/allocator.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/any.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/autotuned_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/composite_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/config.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/defines.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dist.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/dynamic_bitset.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/flann_base.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/general.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/ground_truth.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/heap.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/index_testing.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kdtree_single_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/kmeans_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/linear_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/logger.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/lsh_table.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/matrix.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/miniflann.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/nn_index.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/params.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/random.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/result_set.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/sampling.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/saving.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/flann/include/opencv2/flann/timer.h
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/highgui/include/opencv2/highgui.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgcodecs/include/opencv2/imgcodecs.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/./imgproc/segmentation.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/imgproc/include/opencv2/imgproc.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/ml/include/opencv2/ml/ml.inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/detection_based_tracker.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/objdetect/include/opencv2/objdetect/face.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/photo/include/opencv2/photo.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/blenders.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/camera.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/exposure_compensate.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/matchers.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/util_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/stitching/include/opencv2/stitching/warpers.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/background_segm.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/video/include/opencv2/video/tracking.hpp
|
||||||
|
examples/CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o: /home/lqs/opencv-4.6.0/modules/videoio/include/opencv2/videoio.hpp
|
||||||
|
|
Binary file not shown.
@ -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 = -std=c++11 -pthread -std=c++11 -pthread -std=gnu++11
|
||||||
|
|
||||||
|
CXX_DEFINES = -DOPENCV_VERSION_4
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/lqs/UnitreecameraSDK/include -isystem /home/lqs/opencv-4.6.0/build -isystem /home/lqs/opencv-4.6.0/include -isystem /home/lqs/opencv-4.6.0/modules/core/include -isystem /home/lqs/opencv-4.6.0/modules/flann/include -isystem /home/lqs/opencv-4.6.0/modules/imgproc/include -isystem /home/lqs/opencv-4.6.0/modules/ml/include -isystem /home/lqs/opencv-4.6.0/modules/photo/include -isystem /home/lqs/opencv-4.6.0/modules/dnn/include -isystem /home/lqs/opencv-4.6.0/modules/features2d/include -isystem /home/lqs/opencv-4.6.0/modules/imgcodecs/include -isystem /home/lqs/opencv-4.6.0/modules/videoio/include -isystem /home/lqs/opencv-4.6.0/modules/calib3d/include -isystem /home/lqs/opencv-4.6.0/modules/highgui/include -isystem /home/lqs/opencv-4.6.0/modules/objdetect/include -isystem /home/lqs/opencv-4.6.0/modules/stitching/include -isystem /home/lqs/opencv-4.6.0/modules/video/include -isystem /home/lqs/opencv-4.6.0/modules/world/include -isystem /home/lqs/opencv-4.6.0/modules/ts/include
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ -std=c++11 -pthread -std=c++11 -pthread -rdynamic CMakeFiles/example_getRectFrame.dir/example_getRectFrame.cc.o -o ../../bins/example_getRectFrame -L/home/lqs/UnitreecameraSDK/lib/amd64 -Wl,-rpath,/home/lqs/UnitreecameraSDK/lib/amd64:/home/lqs/opencv-4.6.0/build/lib -lunitree_camera -ltstc_V4L2_xu_camera -ludev -lsystemlog /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0 /home/lqs/opencv-4.6.0/build/lib/libopencv_world.so.4.6.0
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue