view src/Tests/unit_test.pro @ 490:8dfb93e80338

NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically) NEW: Logbook detail page in larger font (And nicer layout) CHANGE: Sleep mode current slightly reduced for all hwOS devices NEW: Logbook now records battery information NEW: Markers in internal logbook drawn as small "m" next to the profile
author heinrichsweikamp
date Wed, 29 Mar 2017 21:35:12 +0200
parents cd2320cd6f9a
children
line wrap: on
line source

#-----------------------------------------------------------------------------
#
# Project created by QtCreator 2013-03-29T10:58:23
#
#-----------------------------------------------------------------------------

TEMPLATE = app
TARGET   = unit_test

CONFIG   *= qt
CONFIG   -= app_bundle

QT       *= core
QT       -= gui

DEFINES *= UNIX

#-----------------------------------------------------------------------------
# Need the GoogleTest 1.6.0 library here:
GTEST=$$PWD/../../../gtest-1.6.0
!exists($$GTEST/include): GTEST=$$PWD/../../../../Dependencies/gtest-1.6.0
!exists($$GTEST/include): error(Requires GoogleTest 1.6.0)
INCLUDEPATH *= $$GTEST/include $$GTEST/gtest-1.6.0
SOURCES *= $$GTEST/gtest-1.6.0/src/gtest-all.cc

win32: DEFINES *= _VARIADIC_MAX=10

#-----------------------------------------------------------------------------
# Avoid unwanted warnings

unix {
    QMAKE_CXXFLAGS_WARN_ON *= -Wno-unknown-pragmas
}

win32 {
    QMAKE_CXXFLAGS *= -wd4244 -wd4068 -wd4305
}

#-----------------------------------------------------------------------------
SOURCES += \
    $$PWD/../compass.c          \
    $$PWD/../compass_calib.c    \
    compass_trigo_test.cpp      \
    compass_test.cpp            \
    deco_volume_test.cpp        \
    unit_test.cpp

INCLUDEPATH *= $$PWD/..
HEADERS += \
    $$PWD/../shared_definitions.h   \
    $$PWD/../p2_definitions.h       \
    $$PWD/../p2_deco.c              \
    $$PWD/../compass.h