boostorg / move

Boost.org move module
http://boost.org/libs/move
Boost Software License 1.0
19 stars 55 forks source link

Add minimal cmake file #23

Closed Mike-Devel closed 5 years ago

Mike-Devel commented 5 years ago

This cmake file just provides the minimal infrastructure necessary, such that other libraries can get a sensible result from calling

 add_subdirectory( <path-to-boost_move> )
 target_link_library(<my_lib> PUBLIC Boost::move)

More information:

Of course the file can be extended to e.g. build and run tests and support installation, but that is out of scope for this particular PR.

codecov[bot] commented 5 years ago

Codecov Report

Merging #23 into develop will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff            @@
##           develop      #23   +/-   ##
========================================
  Coverage    72.44%   72.44%           
========================================
  Files           28       28           
  Lines         1695     1695           
  Branches       578      578           
========================================
  Hits          1228     1228           
- Misses         106      109    +3     
+ Partials       361      358    -3
Impacted Files Coverage Δ
...ude/boost/move/algo/detail/adaptive_sort_merge.hpp 67.61% <0%> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 1decc55...31da589. Read the comment docs.

igaztanaga commented 5 years ago

Thanks!

Mike-Devel commented 5 years ago

No worries. Thanks for the quick merge.