cd65c671f2
--HG-- branch : develop
112 lines
3.4 KiB
Prolog
112 lines
3.4 KiB
Prolog
#-------------------------------------------------
|
||
#
|
||
# Project created by QtCreator 2015-03-31T17:27:03
|
||
#
|
||
#-------------------------------------------------
|
||
|
||
QT += testlib gui printsupport
|
||
|
||
TARGET = ValentinaTests
|
||
|
||
# File with common stuff for whole project
|
||
include(../../../Valentina.pri)
|
||
|
||
# CONFIG += testcase adds a 'make check' which is great. But by default it also
|
||
# adds a 'make install' that installs the test cases, which we do not want.
|
||
# Can configure it not to do that with 'no_testcase_installs'
|
||
# We use C++11 standard
|
||
CONFIG += c++11 testcase no_testcase_installs
|
||
|
||
# Use out-of-source builds (shadow builds)
|
||
CONFIG -= app_bundle debug_and_release debug_and_release_target
|
||
|
||
TEMPLATE = app
|
||
|
||
# directory for executable file
|
||
DESTDIR = bin
|
||
|
||
# Directory for files created moc
|
||
MOC_DIR = moc
|
||
|
||
# objecs files
|
||
OBJECTS_DIR = obj
|
||
|
||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||
|
||
SOURCES += \
|
||
qttestmainlambda.cpp \
|
||
tst_vposter.cpp \
|
||
tst_vabstractdetail.cpp \
|
||
tst_vspline.cpp \
|
||
abstracttest.cpp
|
||
|
||
HEADERS += \
|
||
tst_vposter.h \
|
||
tst_vabstractdetail.h \
|
||
tst_vspline.h \
|
||
abstracttest.h
|
||
|
||
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}/$${UI_DIR}" \
|
||
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
||
-isystem "$${OUT_PWD}/$${RCC_DIR}" \
|
||
$$GCC_DEBUG_CXXFLAGS # See Valentina.pri for more details.
|
||
|
||
#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_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}/$${UI_DIR}" \
|
||
-isystem "$${OUT_PWD}/$${MOC_DIR}" \
|
||
-isystem "$${OUT_PWD}/$${RCC_DIR}" \
|
||
$$CLANG_DEBUG_CXXFLAGS # See Valentina.pri for more details.
|
||
}
|
||
} else {
|
||
*-g++{
|
||
QMAKE_CXXFLAGS += $$GCC_DEBUG_CXXFLAGS # See Valentina.pri for more details.
|
||
}
|
||
}
|
||
}else{
|
||
# Release mode
|
||
DEFINES += V_NO_ASSERT
|
||
!unix:*-g++{
|
||
QMAKE_CXXFLAGS += -fno-omit-frame-pointer # Need for exchndl.dll
|
||
}
|
||
|
||
# Turn on debug symbols in release mode on Unix systems.
|
||
# On Mac OS X temporarily disabled. Need find way how to strip binary file.
|
||
!macx:!win32-msvc*{
|
||
QMAKE_CXXFLAGS_RELEASE += -g -gdwarf-3
|
||
QMAKE_CFLAGS_RELEASE += -g -gdwarf-3
|
||
QMAKE_LFLAGS_RELEASE =
|
||
}
|
||
}
|
||
|
||
# VLayout static library
|
||
unix|win32: LIBS += -L$$OUT_PWD/../../libs/vlayout/$${DESTDIR} -lvlayout
|
||
|
||
INCLUDEPATH += $$PWD/../../libs/vlayout
|
||
DEPENDPATH += $$PWD/../../libs/vlayout
|
||
|
||
win32:!win32-g++: PRE_TARGETDEPS += $$OUT_PWD/../../libs/vlayout/$${DESTDIR}/vlayout.lib
|
||
else:unix|win32-g++: PRE_TARGETDEPS += $$OUT_PWD/../../libs/vlayout/$${DESTDIR}/libvlayout.a
|
||
|
||
# VGeometry static library
|
||
unix|win32: LIBS += -L$$OUT_PWD/../../libs/vgeometry/$${DESTDIR} -lvgeometry
|
||
|
||
INCLUDEPATH += $$PWD/../../libs/vgeometry
|
||
DEPENDPATH += $$PWD/../../libs/vgeometry
|
||
|
||
win32:!win32-g++: PRE_TARGETDEPS += $$OUT_PWD/../../libs/vgeometry/$${DESTDIR}/vgeometry.lib
|
||
else:unix|win32-g++: PRE_TARGETDEPS += $$OUT_PWD/../../libs/vgeometry/$${DESTDIR}/libvgeometry.a
|