Skip to content
Snippets Groups Projects
Commit b77ce1b3 authored by giacomo's avatar giacomo
Browse files

prepared for single module release

parent 22244587
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
# 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.*
# 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.*
# Makefile
# Get the current working directory
CURRENT_DIR := $(shell pwd)
# Set default values for build_dir and install_prefix
BUILD_DIR := $(CURRENT_DIR)/build
TMP_INSTALL_DIR=$(CURRENT_DIR)/tmp-install-dir
PREFIX ?= /runtime
export MAKE := $(MAKE)
# The default target when you run 'make'
all:
@echo "[ Makefile ] build_dir=$(BUILD_DIR) install_prefix=$(PREFIX) jobs $(JOBS)"
mkdir -p $(BUILD_DIR); \
cd $(BUILD_DIR) && cmake .. -DCMAKE_INSTALL_PREFIX=$(TMP_INSTALL_DIR) -DCMAKE_PREFIX_PATH=$(PREFIX)/lib -DCMAKE_MODULE_PATH=$(PREFIX)/lib/cmake && $(MAKE) && $(MAKE) 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)
# Set the build_dir and install_prefix from the command line if provided
# Example: make build_dir=/custom/build install_prefix=/custom/install install
build:
@echo "[ Makefile ] build_dir=$(BUILD_DIR) and install_prefix=$(PREFIX)"
mkdir -p $(BUILD_DIR); \
cd $(BUILD_DIR) && cmake .. -DCMAKE_INSTALL_PREFIX=$(TMP_INSTALL_DIR) && $(MAKE) && $(MAKE) install
This diff is collapsed.
#-------------------------------------------------
#
# Project created by QtCreator 2019-09-03T15:28:56
#
#-------------------------------------------------
isEmpty(INSTALL_ROOT) {
INSTALL_ROOT = /usr/local/cumbia-libs
}
# INSTALL_ROOT is used to install the target
# prefix is used within DEFINES +=
#
# cumbia installation script uses a temporary INSTALL_ROOT during build
# and then files are copied into the destination prefix. That's where
# configuration files must be found by the application when the script
# installs everything at destination
#
isEmpty(prefix) {
prefix = $${INSTALL_ROOT}
}
isEmpty(CUMBIA_ROOT) {
CUMBIA_ROOT=$${prefix}
}
include($${INSTALL_ROOT}/include/cumbia-qtcontrols/cumbia-qtcontrols.pri)
# Here qumbia-plugins libraries will be installed
QUMBIA_PLUGINS_LIBDIR=$${INSTALL_ROOT}/lib/qumbia-plugins
exists($${CUMBIA_ROOT}/include/cumbia-tango) {
INCLUDEPATH += $${CUMBIA_ROOT}/include/cumbia-tango
LIBS += -lcumbia-tango
} else {
error("cumbia-tango installation not found under $${CUMBIA_ROOT}")
}
QT += core gui
exists($${CUMBIA_ROOT}/include/quapps/quapps.pri) {
include ($${CUMBIA_ROOT}/include/quapps/quapps.pri)
} else {
error("cumbia-qtcontrols installation not found under $${CUMBIA_ROOT}")
}
TARGET = cumbia-copy-source-context-menu-actions
TEMPLATE = lib
CONFIG += plugin
isEmpty(INSTALL_ROOT) {
INSTALL_ROOT = /usr/local/cumbia-libs
}
isEmpty(buildtype) {
buildtype = release
} else {
equals(buildtype, debug) {
message("")
message("debug build")
message("")
}
}
CONFIG += $${buildtype}
MAKEFILE=Makefile.qmake
TEMPLATE = lib
CONFIG += plugin $${buildtype}
QT += core gui
QUMBIA_PLUGINS_INCLUDES=$${INSTALL_ROOT}/include/qumbia-plugins
QUMBIA_PLUGINS_SHARE=$${INSTALL_ROOT}/share/qumbia-plugins
QUMBIA_PLUGINS_LIBDIR=$${INSTALL_ROOT}/lib/qumbia-plugins
QUMBIA_PLUGINS_DOCDIR=$${INSTALL_ROOT}/share/doc/qumbia-plugins
# 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.
INC_DIR = $${QUMBIA_PLUGINS_INCLUDES}
SHAREDIR = $${QUMBIA_PLUGINS_SHARE}
PLUGIN_LIB_DIR = $${QUMBIA_PLUGINS_LIBDIR}
DESTDIR = plugins
DEFINES += CUMBIAQTCONTROLS_HAS_QWT=1
!isEmpty(docs) {
DOC_DIR = $${QUMBIA_PLUGINS_DOCDIR}
doc.commands = \
doxygen \
Doxyfile;
doc.files = doc/*
doc.path = $${DOC_DIR}
QMAKE_EXTRA_TARGETS += doc
INSTALLS += doc
}
else {
message("call qmake docs=1 to generate and install docs")
}
DEFINES_QUMBIA_PLUGINS_LIBDIR = $${prefix}/lib/qumbia-plugins
# added by cumbia-qtcontrols.pri, not included by this file
#
DEFINES += \
CUMBIA_QTCONTROLS_PLUGIN_DIR=\"\\\"$${DEFINES_QUMBIA_PLUGINS_LIBDIR}\\\"\"
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=0x060000 # disables all the APIs deprecated before Qt 6.0.0
TARGET = cumbia-copy-source-context-menu-actions
TEMPLATE = lib
CONFIG += plugin
TARGET = cumbia-copy-source-context-menu-actions
SOURCES += \
src/cumbia-copy-source-ctx-menu-action.cpp
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment