From 9b0d55f2397570c0ce0ac82423bd95b4afa35fab Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Tue, 7 Jan 2020 11:23:04 +0000 Subject: [PATCH] Add chrono to thread autopkgtest until https://github.com/boostorg/boost_install/issues/27 is resolved. --- debian/changelog | 5 +++++ debian/tests/srcs/thread/CMakeLists.txt | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f814ba63c..37e8f7c00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,13 @@ boost1.71 (1.71.0-4) UNRELEASED; urgency=medium + [ Giovanni Mascellani ] * Transition to the Salsa CI team pipeline. * Enable -context on mips64el (closes: #948015). + [ Dimitri John Ledkov ] + * Add chrono to thread autopkgtest until + https://github.com/boostorg/boost_install/issues/27 is resolved. + -- Giovanni Mascellani Fri, 03 Jan 2020 11:23:39 +0100 boost1.71 (1.71.0-3) unstable; urgency=medium diff --git a/debian/tests/srcs/thread/CMakeLists.txt b/debian/tests/srcs/thread/CMakeLists.txt index e851acaae..f04b4fec1 100644 --- a/debian/tests/srcs/thread/CMakeLists.txt +++ b/debian/tests/srcs/thread/CMakeLists.txt @@ -1,11 +1,11 @@ project(Boost CXX) cmake_minimum_required(VERSION 3.0) -FIND_PACKAGE(Boost COMPONENTS thread REQUIRED) +FIND_PACKAGE(Boost COMPONENTS thread chrono REQUIRED) INCLUDE_DIRECTORIES (${Boost_INCLUDE_DIRS}) ADD_EXECUTABLE(demo1 demo1.cpp) TARGET_LINK_LIBRARIES(demo1 ${Boost_LIBRARIES}) ADD_EXECUTABLE(demo2 demo2.cpp) -TARGET_LINK_LIBRARIES(demo2 ${Boost_LIBRARIES}) \ No newline at end of file +TARGET_LINK_LIBRARIES(demo2 ${Boost_LIBRARIES})