From dddf0d2b3f8725f324964da864d282123a5d934d Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Thu, 4 Aug 2016 12:44:25 +0300 Subject: [PATCH] Tests: Remove Utils dependency in algorithm test It depends on header-only implementation. Change-Id: Ib0a1dc92789b2d3e527f1d3cd1a4393f92e161e1 Reviewed-by: Christian Stenger --- tests/auto/algorithm/algorithm.pro | 1 - tests/auto/algorithm/algorithm.qbs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/auto/algorithm/algorithm.pro b/tests/auto/algorithm/algorithm.pro index d1e88a924d5..e532c2aad36 100644 --- a/tests/auto/algorithm/algorithm.pro +++ b/tests/auto/algorithm/algorithm.pro @@ -1,4 +1,3 @@ -QTC_LIB_DEPENDS = utils include(../qttest.pri) SOURCES += tst_algorithm.cpp diff --git a/tests/auto/algorithm/algorithm.qbs b/tests/auto/algorithm/algorithm.qbs index 6131f95f86e..6adc0fffdc0 100644 --- a/tests/auto/algorithm/algorithm.qbs +++ b/tests/auto/algorithm/algorithm.qbs @@ -2,8 +2,8 @@ import qbs QtcAutotest { name: "Algorithm autotest" - Depends { name: "Utils" } + cpp.includePaths: [project.ide_source_tree + "/src/libs"] files: [ "tst_algorithm.cpp", ]