2014-08-26 17:06:14 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2014-08-26T14:18:08
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += widgets
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = vpropertyexplorer
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
CONFIG += c++11
|
|
|
|
|
|
|
|
DEFINES += VPROPERTYEXPLORER_LIBRARY
|
|
|
|
|
2014-08-26 20:31:28 +02:00
|
|
|
# directory for executable file
|
|
|
|
DESTDIR = bin
|
|
|
|
|
|
|
|
# files created moc
|
|
|
|
MOC_DIR = moc
|
|
|
|
|
|
|
|
# objecs files
|
|
|
|
OBJECTS_DIR = obj
|
|
|
|
|
2014-08-26 19:23:08 +02:00
|
|
|
SOURCES += \
|
2014-08-26 17:06:14 +02:00
|
|
|
vproperty.cpp \
|
|
|
|
vpropertydelegate.cpp \
|
|
|
|
vpropertyfactorymanager.cpp \
|
|
|
|
vpropertyformview.cpp \
|
|
|
|
vpropertyformwidget.cpp \
|
|
|
|
vpropertymodel.cpp \
|
|
|
|
vpropertyset.cpp \
|
|
|
|
vpropertytreeview.cpp \
|
|
|
|
vserializedproperty.cpp \
|
|
|
|
plugins/vwidgetproperty.cpp \
|
|
|
|
plugins/vemptyproperty.cpp \
|
|
|
|
plugins/vboolproperty.cpp \
|
|
|
|
plugins/vshortcutproperty.cpp \
|
|
|
|
plugins/vcolorproperty.cpp \
|
|
|
|
plugins/vshortcutpropertyeditor.cpp \
|
|
|
|
plugins/venumproperty.cpp \
|
|
|
|
plugins/vfileproperty.cpp \
|
|
|
|
plugins/vcolorpropertyeditor.cpp \
|
|
|
|
plugins/vfilepropertyeditor.cpp \
|
|
|
|
plugins/vnumberproperty.cpp \
|
2014-08-27 12:42:54 +02:00
|
|
|
plugins/Vector3d/vvector3dproperty.cpp \
|
|
|
|
vstandardpropertyfactory.cpp \
|
2014-08-27 14:39:54 +02:00
|
|
|
plugins/vstringproperty.cpp \
|
2014-08-28 13:05:58 +02:00
|
|
|
plugins/vpointfproperty.cpp \
|
2014-09-20 18:05:21 +02:00
|
|
|
plugins/vobjectproperty.cpp \
|
|
|
|
stable.cpp
|
2014-08-26 17:06:14 +02:00
|
|
|
|
2014-08-26 19:23:08 +02:00
|
|
|
HEADERS +=\
|
2014-08-26 17:06:14 +02:00
|
|
|
vpropertyexplorer_global.h \
|
|
|
|
vpropertyfactorymanager_p.h \
|
|
|
|
vpropertytreeview_p.h \
|
|
|
|
vpropertyset_p.h \
|
|
|
|
vabstractpropertyfactory.h \
|
|
|
|
vfileproperty_p.h \
|
|
|
|
vwidgetproperty_p.h \
|
|
|
|
vpropertymodel_p.h \
|
|
|
|
vstandardpropertyfactory.h \
|
|
|
|
vpropertyformview_p.h \
|
|
|
|
vpropertytreeview.h \
|
|
|
|
vpropertyformwidget_p.h \
|
|
|
|
vpropertydelegate.h \
|
|
|
|
vproperty_p.h \
|
|
|
|
vpropertyformwidget.h \
|
|
|
|
vpropertyformview.h \
|
|
|
|
vpropertyset.h \
|
|
|
|
vpropertymodel.h \
|
|
|
|
vproperty.h \
|
|
|
|
plugins/vwidgetproperty.h \
|
|
|
|
plugins/vcolorproperty.h \
|
|
|
|
plugins/vboolproperty.h \
|
|
|
|
plugins/vcolorpropertyeditor.h \
|
|
|
|
plugins/vshortcutpropertyeditor.h \
|
|
|
|
plugins/vemptyproperty.h \
|
|
|
|
plugins/vshortcutproperty.h \
|
|
|
|
plugins/venumproperty.h \
|
|
|
|
plugins/vfilepropertyeditor.h \
|
|
|
|
plugins/vfileproperty.h \
|
|
|
|
plugins/vnumberproperty.h \
|
|
|
|
plugins/Vector3d/vvector3dproperty.h \
|
|
|
|
vpropertyfactorymanager.h \
|
2014-08-27 12:42:54 +02:00
|
|
|
vserializedproperty.h \
|
2014-08-27 14:39:54 +02:00
|
|
|
plugins/vstringproperty.h \
|
2014-08-28 13:05:58 +02:00
|
|
|
plugins/vpointfproperty.h \
|
|
|
|
plugins/vobjectproperty.h \
|
2014-09-20 18:05:21 +02:00
|
|
|
vproperties.h \
|
|
|
|
stable.h
|
2014-08-26 17:06:14 +02:00
|
|
|
|
|
|
|
unix {
|
2014-10-15 18:56:14 +02:00
|
|
|
isEmpty(PREFIX) {
|
|
|
|
PREFIX = /usr/lib
|
|
|
|
}
|
2014-10-15 19:57:50 +02:00
|
|
|
target.path = $$PREFIX/lib
|
2014-08-26 17:06:14 +02:00
|
|
|
INSTALLS += target
|
2014-09-20 18:05:21 +02:00
|
|
|
|
|
|
|
*-g++{
|
2014-10-03 12:32:12 +02:00
|
|
|
QMAKE_CC = ccache gcc
|
2014-09-20 18:05:21 +02:00
|
|
|
QMAKE_CXX = ccache g++
|
|
|
|
}
|
|
|
|
clang*{
|
2014-10-03 12:32:12 +02:00
|
|
|
QMAKE_CC = ccache clang
|
2014-09-20 18:05:21 +02:00
|
|
|
QMAKE_CXX = ccache clang++
|
|
|
|
}
|
2014-08-26 17:06:14 +02:00
|
|
|
}
|
2014-08-26 20:31:28 +02:00
|
|
|
|
2014-10-04 08:31:34 +02:00
|
|
|
unix:!macx:!clang*{
|
|
|
|
CONFIG += precompile_header
|
|
|
|
# Precompiled headers (PCH)
|
|
|
|
PRECOMPILED_HEADER = stable.h
|
|
|
|
win32-msvc* {
|
|
|
|
PRECOMPILED_SOURCE = stable.cpp
|
|
|
|
}
|
2014-09-20 18:05:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
include(../../../Valentina.pri)
|
|
|
|
|
2014-09-11 18:52:02 +02:00
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
# Debug
|
|
|
|
unix {
|
|
|
|
*-g++{
|
|
|
|
QMAKE_CXXFLAGS += \
|
|
|
|
-isystem "/usr/include/qt5" \
|
|
|
|
-isystem "/usr/include/qt5/QtWidgets" \
|
|
|
|
-isystem "/usr/include/qt5/QtXml" \
|
|
|
|
-isystem "/usr/include/qt5/QtGui" \
|
|
|
|
-isystem "/usr/include/qt5/QtXmlPatterns" \
|
|
|
|
-isystem "/usr/include/qt5/QtCore" \
|
|
|
|
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
|
|
|
$$GCC_CXXFLAGS
|
|
|
|
}
|
|
|
|
#Turn on Clang warnings
|
|
|
|
clang*{
|
|
|
|
QMAKE_CXXFLAGS += \
|
|
|
|
-isystem "/usr/include/qt5" \
|
|
|
|
-isystem "/usr/include/qt5/QtWidgets" \
|
|
|
|
-isystem "/usr/include/qt5/QtXml" \
|
|
|
|
-isystem "/usr/include/qt5/QtGui" \
|
|
|
|
-isystem "/usr/include/qt5/QtCore" \
|
|
|
|
-isystem "/usr/include/qt5/QtXmlPatterns" \
|
|
|
|
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
|
|
|
$$CLANG_CXXFLAGS
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*-g++{#Don't use additional GCC keys on Windows system.
|
|
|
|
QMAKE_CXXFLAGS += -O0 -Wall -Wextra -pedantic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}else{
|
|
|
|
# Release
|
|
|
|
DEFINES += QT_NO_DEBUG_OUTPUT
|
2014-09-24 19:51:06 +02:00
|
|
|
|
2014-10-05 23:07:20 +02:00
|
|
|
unix:!macx:QMAKE_CXXFLAGS_RELEASE += -g
|
|
|
|
unix:!macx{
|
2014-10-04 08:55:52 +02:00
|
|
|
# On Linux
|
2014-10-05 23:07:20 +02:00
|
|
|
QMAKE_POST_LINK += objcopy --only-keep-debug $(DESTDIR)/$(TARGET) $(DESTDIR)/$(TARGET).debug &&
|
|
|
|
QMAKE_POST_LINK += strip --strip-debug --strip-unneeded $(DESTDIR)/$(TARGET) &&
|
|
|
|
QMAKE_POST_LINK += objcopy --add-gnu-debuglink $(DESTDIR)/$(TARGET).debug $(DESTDIR)/$(TARGET)
|
2014-10-04 08:55:52 +02:00
|
|
|
}
|
2014-09-11 18:52:02 +02:00
|
|
|
}
|