Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellframe-node-diagtool
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
cellframe-node-diagtool
Commits
3a66c093
Commit
3a66c093
authored
8 months ago
by
denis
Browse files
Options
Downloads
Patches
Plain Diff
rm files and move cmakelist
parent
be321fbd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#41697
failed with stages
in 0 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+0
-0
0 additions, 0 deletions
CMakeLists.txt
CellframeNodeDiagtool/NodeDiagnostic.pro
+0
-43
0 additions, 43 deletions
CellframeNodeDiagtool/NodeDiagnostic.pro
CellframeNodeDiagtool/main.cpp
+0
-12
0 additions, 12 deletions
CellframeNodeDiagtool/main.cpp
with
0 additions
and
55 deletions
CellframeNodeDiagtool/
CMakeLists.txt
→
CMakeLists.txt
+
0
−
0
View file @
3a66c093
File moved
This diff is collapsed.
Click to expand it.
CellframeNodeDiagtool/NodeDiagnostic.pro
deleted
100644 → 0
+
0
−
43
View file @
be321fbd
QT
-=
gui
QT
+=
core
network
CONFIG
+=
c
++
17
console
CONFIG
-=
app_bundle
#
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
=
0
x060000
#
disables
all
the
APIs
deprecated
before
Qt
6.0
.
0
#
LIBS
+=
-
L
$$
NODE_BUILD_PATH
/
dap
-
sdk
/
core
/
-
ldap_core
include
(..
/
dap
-
sdk
/
core
/
libdap
.
pri
)
SOURCES
+=
\
AbstractDiagnostic
.
cpp
\
DiagnosticWorker
.
cpp
\
main
.
cpp
HEADERS
+=
\
AbstractDiagnostic
.
h
\
DiagnosticWorker
.
h
win32
{
DEFINES
+=
CLI_PATH
=
\\\
"cellframe-node-cli.exe\\\"
HEADERS
+=
WinDiagnostic
.
h
SOURCES
+=
WinDiagnostic
.
cpp
}
mac
{
DEFINES
+=
CLI_PATH
=
\\\
"./cellframe-node-cli\\\"
HEADERS
+=
MacDiagnostic
.
h
SOURCES
+=
MacDiagnostic
.
cpp
}
else
:
!
win32
{
DEFINES
+=
CLI_PATH
=
\\\
"/opt/cellframe-node/bin/cellframe-node-cli\\\"
HEADERS
+=
LinuxDiagnostic
.
h
SOURCES
+=
LinuxDiagnostic
.
cpp
}
#
Default
rules
for
deployment
.
qnx
:
target
.
path
=
/
tmp
/
$$
{
TARGET
}
/
bin
else
:
unix
:
!
android
:
target
.
path
=
/
opt
/
$$
{
TARGET
}
/
bin
!
isEmpty
(
target
.
path
)
:
INSTALLS
+=
target
This diff is collapsed.
Click to expand it.
CellframeNodeDiagtool/main.cpp
deleted
100644 → 0
+
0
−
12
View file @
be321fbd
#include
<QCoreApplication>
#include
"DiagnosticWorker.h"
int
main
(
int
argc
,
char
*
argv
[])
{
qSetMessagePattern
(
"%{type} %{if-category}%{category}: %{endif}%{function}: %{message}"
);
QCoreApplication
a
(
argc
,
argv
);
DiagnosticWorker
*
wrkr
=
new
DiagnosticWorker
();
return
a
.
exec
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment