Tests: only compile TestHelper if BT support is enabled

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-10-08 11:35:28 -07:00
parent 34e68d34dd
commit 1491616dcf

View file

@ -92,7 +92,9 @@ TEST(TestUnitConversion testunitconversion.cpp)
TEST(TestProfile testprofile.cpp) TEST(TestProfile testprofile.cpp)
TEST(TestGpsCoords testgpscoords.cpp) TEST(TestGpsCoords testgpscoords.cpp)
TEST(TestParse testparse.cpp) TEST(TestParse testparse.cpp)
TEST(TestHelper testhelper.cpp) if (BTSUPPORT)
TEST(TestHelper testhelper.cpp)
endif()
TEST(TestParsePerformance testparseperformance.cpp) TEST(TestParsePerformance testparseperformance.cpp)
TEST(TestPlan testplan.cpp) TEST(TestPlan testplan.cpp)
TEST(TestDiveSiteDuplication testdivesiteduplication.cpp) TEST(TestDiveSiteDuplication testdivesiteduplication.cpp)