Mercurial > public > hwos_code
view src/Tests/unit_test.pro @ 472:4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
NEW: Show battery type in information menu (T0:1.5V AA, T1:3.6V AA, T2:3.6V/0.8A LiIon, T3:Internal 18650, T4:Internal 16650)
author | heinrichsweikamp |
---|---|
date | Sun, 18 Dec 2016 18:20:39 +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