2015-06-12 10:55:44 +02:00
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Project created by QtCreator 2015-06-11T20:46:46
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
|
|
# File with common stuff for whole project
|
2015-07-10 11:28:30 +02:00
|
|
|
|
include(../../../common.pri)
|
2015-06-12 10:55:44 +02:00
|
|
|
|
|
2015-06-25 12:42:49 +02:00
|
|
|
|
QT += widgets
|
|
|
|
|
|
2015-06-12 10:55:44 +02:00
|
|
|
|
# Name of the library
|
|
|
|
|
TARGET = vpatterndb
|
|
|
|
|
|
|
|
|
|
# We want create a 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
|
|
|
|
|
|
2015-08-02 19:39:29 +02:00
|
|
|
|
include(trmeasurements.pri)
|
2015-06-12 10:55:44 +02:00
|
|
|
|
include(vpatterndb.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-07-10 11:28:30 +02:00
|
|
|
|
# Set using ccache. Function enable_ccache() defined in common.pri.
|
2015-06-12 10:55:44 +02:00
|
|
|
|
$$enable_ccache()
|
|
|
|
|
|
2015-07-10 11:28:30 +02:00
|
|
|
|
# Set precompiled headers. Function set_PCH() defined in common.pri.
|
2015-06-12 10:55:44 +02:00
|
|
|
|
$$set_PCH()
|
|
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
|
# Debug mode
|
|
|
|
|
unix {
|
|
|
|
|
#Turn on compilers warnings.
|
|
|
|
|
*-g++{
|
|
|
|
|
QMAKE_CXXFLAGS += \
|
|
|
|
|
# Key -isystem disable checking errors in system headers.
|
|
|
|
|
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
2015-07-10 11:28:30 +02:00
|
|
|
|
$$GCC_DEBUG_CXXFLAGS # See common.pri for more details.
|
2015-06-12 10:55:44 +02:00
|
|
|
|
|
|
|
|
|
noAddressSanitizer{ # For enable run qmake with CONFIG+=noAddressSanitizer
|
|
|
|
|
# do nothing
|
|
|
|
|
} else {
|
|
|
|
|
#gcc’s 4.8.0 Address Sanitizer
|
|
|
|
|
#http://blog.qt.digia.com/blog/2013/04/17/using-gccs-4-8-0-address-sanitizer-with-qt/
|
|
|
|
|
QMAKE_CXXFLAGS += -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
|
QMAKE_CFLAGS += -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
|
QMAKE_LFLAGS += -fsanitize=address
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
clang*{
|
|
|
|
|
QMAKE_CXXFLAGS += \
|
|
|
|
|
# Key -isystem disable checking errors in system headers.
|
|
|
|
|
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
2015-07-10 11:28:30 +02:00
|
|
|
|
$$CLANG_DEBUG_CXXFLAGS # See common.pri for more details.
|
2015-06-12 10:55:44 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
*-g++{
|
2015-07-10 11:28:30 +02:00
|
|
|
|
QMAKE_CXXFLAGS += $$GCC_DEBUG_CXXFLAGS # See common.pri for more details.
|
2015-06-12 10:55:44 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
# Release mode
|
2015-10-09 19:22:49 +02:00
|
|
|
|
CONFIG += silent
|
2015-06-12 10:55:44 +02:00
|
|
|
|
|
|
|
|
|
!unix:*-g++{
|
|
|
|
|
QMAKE_CXXFLAGS += -fno-omit-frame-pointer # Need for exchndl.dll
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 =
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|