From d51eefa1c4b6c4c787ea1ea33a059d07cc7176a8 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Thu, 24 Mar 2016 17:42:55 +0100 Subject: [PATCH] Make tests build by default --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d8cfd225..77f018bed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,11 +87,11 @@ add_library(osrm_contract $ $) add_library(osrm_store $ $) # Unit tests -add_executable(engine-tests EXCLUDE_FROM_ALL unit_tests/engine_tests.cpp ${EngineTestsGlob} $ $) -add_executable(extractor-tests EXCLUDE_FROM_ALL unit_tests/extractor_tests.cpp ${ExtractorTestsGlob} $ $) -add_executable(util-tests EXCLUDE_FROM_ALL unit_tests/util_tests.cpp ${UtilTestsGlob} $) -add_executable(server-tests EXCLUDE_FROM_ALL unit_tests/server_tests.cpp ${ServerTestsGlob} $ $) -add_executable(library-tests EXCLUDE_FROM_ALL unit_tests/library_tests.cpp ${LibraryTestsGlob}) +add_executable(engine-tests unit_tests/engine_tests.cpp ${EngineTestsGlob} $ $) +add_executable(extractor-tests unit_tests/extractor_tests.cpp ${ExtractorTestsGlob} $ $) +add_executable(util-tests unit_tests/util_tests.cpp ${UtilTestsGlob} $) +add_executable(server-tests unit_tests/server_tests.cpp ${ServerTestsGlob} $ $) +add_executable(library-tests unit_tests/library_tests.cpp ${LibraryTestsGlob}) # Benchmarks add_executable(rtree-bench EXCLUDE_FROM_ALL src/benchmarks/static_rtree.cpp $)