Warning, /graphics/glaxnimate/external/Qt-Color-Widgets/color_widgets.pro is written in an unsupported language. File is not indexed.
0001 #
0002 # Copyright (C) 2013-2020 Mattia Basaglia
0003 #
0004 # This program is free software: you can redistribute it and/or modify
0005 # it under the terms of the GNU Lesser General Public License as published by
0006 # the Free Software Foundation, either version 3 of the License, or
0007 # (at your option) any later version.
0008 #
0009 # This program is distributed in the hope that it will be useful,
0010 # but WITHOUT ANY WARRANTY; without even the implied warranty of
0011 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0012 # GNU Lesser General Public License for more details.
0013 #
0014 # You should have received a copy of the GNU Lesser General Public License
0015 # along with this program. If not, see <http://www.gnu.org/licenses/>.
0016 #
0017 TEMPLATE=lib
0018 #CONFIG += dll
0019 QT += core gui widgets
0020 DEFINES += QTCOLORWIDGETS_LIBRARY
0021
0022 INCLUDEPATH += $$PWD/include
0023
0024 TARGET=QtColorWidgets
0025
0026 VERSION=2.2.0
0027
0028 OBJECTS_DIR = out/obj
0029 MOC_DIR = out/generated
0030 UI_DIR = out/generated
0031 RCC_DIR = out/generated
0032
0033 include(color_widgets.pri)
0034
0035 build_all:!build_pass {
0036 CONFIG -= build_all
0037 CONFIG += release
0038 }
0039
0040 unix {
0041 LIB_TARGET = lib$${TARGET}.so
0042 }
0043 win32 {
0044 LIB_TARGET = $${TARGET}.dll
0045 }
0046 android {
0047 OBJECTS_DIR = $$ANDROID_TARGET_ARCH/out/obj
0048 MOC_DIR = $$ANDROID_TARGET_ARCH/out/generated
0049 UI_DIR = $$ANDROID_TARGET_ARCH/out/generated
0050 RCC_DIR = $$ANDROID_TARGET_ARCH/out/generated
0051 }
0052 isEmpty(PREFIX) {
0053 PREFIX = /usr/local
0054 }
0055 target.path = $$PREFIX/lib
0056 headers.path = $$PREFIX/include/QtColorWidgets
0057 headers.files = $$HEADERS
0058
0059 INSTALLS += target headers
0060