forked from ceph/ceph-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add chrono to thread autopkgtest until boostorg/boost_install#27 is r…
…esolved.
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> Fri, 03 Jan 2020 11:23:39 +0100 | ||
|
||
boost1.71 (1.71.0-3) unstable; urgency=medium | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}) | ||
TARGET_LINK_LIBRARIES(demo2 ${Boost_LIBRARIES}) |