2015-01-02 14:53:36 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2015-01-02T15:39:01
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
# File with common stuff for whole project
|
2015-07-10 11:28:30 +02:00
|
|
|
include(../../../common.pri)
|
2015-01-02 14:53:36 +01:00
|
|
|
|
2016-07-22 11:56:45 +02:00
|
|
|
QT += core gui widgets printsupport xml
|
2015-01-13 11:38:51 +01:00
|
|
|
|
2015-01-02 14:53:36 +01:00
|
|
|
# Name of library
|
|
|
|
TARGET = vlayout
|
|
|
|
|
|
|
|
# We want create library
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
CONFIG += \
|
|
|
|
staticlib \# Making static library
|
|
|
|
c++11 # We use C++11 standard
|
|
|
|
|
|
|
|
# Use out-of-source builds (shadow builds)
|
|
|
|
CONFIG -= debug_and_release debug_and_release_target
|
|
|
|
|
|
|
|
# Since Qt 5.4.0 the source code location is recorded only in debug builds.
|
|
|
|
# We need this information also in release builds. For this need define QT_MESSAGELOGCONTEXT.
|
|
|
|
DEFINES += QT_MESSAGELOGCONTEXT
|
|
|
|
|
|
|
|
include(vlayout.pri)
|
|
|
|
|
|
|
|
# This is static library so no need in "make install"
|
|
|
|
|
|
|
|
# directory for executable file
|
|
|
|
DESTDIR = bin
|
|
|
|
|
|
|
|
# files created moc
|
|
|
|
MOC_DIR = moc
|
|
|
|
|
|
|
|
# objecs files
|
|
|
|
OBJECTS_DIR = obj
|
|
|
|
|
2015-10-19 15:21:06 +02:00
|
|
|
# Directory for files created rcc
|
|
|
|
RCC_DIR = rcc
|
|
|
|
|
2015-07-10 11:28:30 +02:00
|
|
|
# Set using ccache. Function enable_ccache() defined in common.pri.
|
2015-01-02 14:53:36 +01:00
|
|
|
$$enable_ccache()
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
# Debug mode
|
|
|
|
unix {
|
2016-07-20 14:40:33 +02:00
|
|
|
include(warnings.pri)
|
2015-01-02 14:53:36 +01:00
|
|
|
} else {
|
|
|
|
*-g++{
|
2015-07-10 11:28:30 +02:00
|
|
|
QMAKE_CXXFLAGS += $$GCC_DEBUG_CXXFLAGS # See common.pri for more details.
|
2015-01-02 14:53:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}else{
|
|
|
|
# Release mode
|
2015-10-24 13:13:59 +02:00
|
|
|
!win32-msvc*:CONFIG += silent
|
2015-01-02 14:53:36 +01:00
|
|
|
DEFINES += V_NO_ASSERT
|
|
|
|
!unix:*-g++{
|
|
|
|
QMAKE_CXXFLAGS += -fno-omit-frame-pointer # Need for exchndl.dll
|
|
|
|
}
|
|
|
|
|
2016-07-20 14:40:33 +02:00
|
|
|
checkWarnings{
|
|
|
|
unix:include(warnings.pri)
|
|
|
|
}
|
|
|
|
|
2016-02-23 13:30:56 +01:00
|
|
|
QMAKE_CXXFLAGS -= -O2 # Disable default optimization level
|
|
|
|
QMAKE_CXXFLAGS += -O3 # For vlayout library enable speed optimizations
|
|
|
|
|
2015-05-18 10:26:54 +02:00
|
|
|
noDebugSymbols{ # For enable run qmake with CONFIG+=noDebugSymbols
|
|
|
|
# do nothing
|
|
|
|
} else {
|
|
|
|
!macx:!win32-msvc*{
|
|
|
|
# Turn on debug symbols in release mode on Unix systems.
|
|
|
|
# On Mac OS X temporarily disabled. TODO: find way how to strip binary file.
|
|
|
|
QMAKE_CXXFLAGS_RELEASE += -g -gdwarf-3
|
|
|
|
QMAKE_CFLAGS_RELEASE += -g -gdwarf-3
|
|
|
|
QMAKE_LFLAGS_RELEASE =
|
|
|
|
}
|
2015-01-02 14:53:36 +01:00
|
|
|
}
|
|
|
|
}
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
share/icons.qrc
|