view src/Tests/unit_test.pro @ 401:7be43d886bb1

Logbook marker can be set in dive mode menu (OC only)
author heinrichsweikamp
date Sat, 09 Jan 2016 11:42:01 +0100
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