Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cumbia-viewtrend-context-menu-actions-plugin
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
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
lib
cumbia
cumbia-viewtrend-context-menu-actions-plugin
Commits
9991de9c
Commit
9991de9c
authored
5 months ago
by
Giacomo Strangolino
Browse files
Options
Downloads
Patches
Plain Diff
added Makefiles and renamed .pro
parent
ef7a9df7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile.INAU
+24
-0
24 additions, 0 deletions
Makefile.INAU
cumbia-viewtrend-context-menu-actions-plugin.pro
+61
-0
61 additions, 0 deletions
cumbia-viewtrend-context-menu-actions-plugin.pro
with
85 additions
and
0 deletions
Makefile.INAU
0 → 100644
+
24
−
0
View file @
9991de9c
# Makefile
# Get the current working directory
CURRENT_DIR
:=
$(
shell
pwd
)
TMP_INSTALL_DIR
=
$(
CURRENT_DIR
)
/tmp-install-dir
PREFIX
?=
/runtime
CUMBIA_ROOT
?=
/runtime
MKF_OUT
=
Makefile.qmake
export
MAKE
:=
$(
MAKE
)
# The default target when you run 'make'
all
:
@
qmake
INSTALL_ROOT
=
$(
TMP_INSTALL_DIR
)
prefix
=
$(
PREFIX
)
-o
$(
MKF_OUT
)
&&
$(
MAKE
)
-f
$(
MKF_OUT
)
\
&&
$(
MAKE
)
-f
$(
MKF_OUT
)
install
# The target when you run 'make install'
install
:
@
echo
"[ Makefile ] installing from
$(
TMP_INSTALL_DIR
)
to
$(
PREFIX
)
"
@
mkdir
-p
$(
PREFIX
)
@
cp
-rv
$(
TMP_INSTALL_DIR
)
/
*
$(
PREFIX
)
clean
:
@
rm
-rf
objs obj moc
$(
MKF_OUT
)
lib
*
.so.
*
This diff is collapsed.
Click to expand it.
cumbia-viewtrend-context-menu-actions-plugin.pro
0 → 100644
+
61
−
0
View file @
9991de9c
isEmpty
(
INSTALL_ROOT
)
{
INSTALL_ROOT
=
/
usr
/
local
/
cumbia
-
libs
}
isEmpty
(
prefix
)
{
prefix
=
$$
{
INSTALL_ROOT
}
}
isEmpty
(
CUMBIA_ROOT
)
{
CUMBIA_ROOT
=
$$
{
prefix
}
}
include
(
$$
{
CUMBIA_ROOT
}
/
include
/
cumbia
-
qtcontrols
/
cumbia
-
qtcontrols
.
pri
)
QUMBIA_PLUGINS_LIBDIR
=
$$
{
INSTALL_ROOT
}
/
lib
/
qumbia
-
plugins
QT
+=
core
gui
datavisualization
MAKEFILE
=
Makefile
.
qmake
TARGET
=
cumbia
-
viewtrend
-
context
-
menu
-
actions
-
plugin
TEMPLATE
=
lib
CONFIG
+=
plugin
MOC_DIR
=
moc
OBJECTS_DIR
=
objs
isEmpty
(
buildtype
)
{
buildtype
=
release
}
else
{
equals
(
buildtype
,
debug
)
{
message
(
""
)
message
(
"debug build"
)
message
(
""
)
}
}
CONFIG
+=
$$
{
buildtype
}
#
The
following
define
makes
your
compiler
emit
warnings
if
you
use
#
any
feature
of
Qt
which
has
been
marked
as
deprecated
(
the
exact
warnings
#
depend
on
your
compiler
).
Please
consult
the
documentation
of
the
#
deprecated
API
in
order
to
know
how
to
port
your
code
away
from
it
.
DEFINES
+=
QT_DEPRECATED_WARNINGS
#
You
can
also
make
your
code
fail
to
compile
if
you
use
deprecated
APIs
.
#
In
order
to
do
so
,
uncomment
the
following
line
.
#
You
can
also
select
to
disable
deprecated
APIs
only
up
to
a
certain
version
of
Qt
.
#
DEFINES
+=
QT_DISABLE_DEPRECATED_BEFORE
=
0
x060000
#
disables
all
the
APIs
deprecated
before
Qt
6.0
.
0
SOURCES
+=
\
cumbia
-
viewtrend
-
ctx
-
menu
-
action
.
cpp
\
qutrendwidget
.
cpp
HEADERS
+=
\
cumbia
-
viewtrend
-
ctx
-
menu
-
action
.
h
\
qutrendwidget
.
h
DISTFILES
+=
cumbia
-
viewtrend
-
context
-
menu
-
action
.
json
\
README
.
md
unix
{
target
.
path
=
$$
{
QUMBIA_PLUGINS_LIBDIR
}
INSTALLS
+=
target
}
This diff is collapsed.
Click to expand it.
Preview
0%
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