[requires]
continuable/4.2.2
NoteSimplest use case consuming this recipe and assuming CMake as your local build tool:
If you are new with Conan, we recommend to read the section how to consume packages.If you need additional assistance, please ask a question in the Conan Center Index repository.
[requires]
continuable/4.2.2
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):
$ conan install conanfile.txt --build=missing
Useful information to take into account to consume this library:
These are the main declared targets:
continuable
continuable::continuable
continuable.pc
A simple use case using the CMake file name and the global target:
# ...
find_package(continuable REQUIRED)
# ...
target_link_libraries(YOUR_TARGET continuable::continuable)
These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the continuable
homepage listed above:
#include "continuable/continuable-base.hpp"
#include "continuable/continuable-connections.hpp"
#include "continuable/continuable-coroutine.hpp"
#include "continuable/continuable-operations.hpp"
#include "continuable/continuable-primitives.hpp"
#include "continuable/continuable-promise-base.hpp"
#include "continuable/continuable-promisify.hpp"
#include "continuable/continuable-result.hpp"
#include "continuable/continuable-transforms.hpp"
#include "continuable/continuable-traverse-async.hpp"
#include "continuable/continuable-traverse.hpp"
#include "continuable/continuable-types.hpp"
#include "continuable/continuable.hpp"
#include "continuable/detail/connection/connection-aggregated.hpp"
#include "continuable/detail/connection/connection-all.hpp"
#include "continuable/detail/connection/connection-any.hpp"
#include "continuable/detail/connection/connection-seq.hpp"
#include "continuable/detail/connection/connection.hpp"
#include "continuable/detail/core/annotation.hpp"
#include "continuable/detail/core/base.hpp"
#include "continuable/detail/core/types.hpp"
#include "continuable/detail/external/asio.hpp"
#include "continuable/detail/features.hpp"
#include "continuable/detail/operations/async.hpp"
#include "continuable/detail/operations/loop.hpp"
#include "continuable/detail/operations/split.hpp"
#include "continuable/detail/other/coroutines.hpp"
#include "continuable/detail/other/erasure.hpp"
#include "continuable/detail/other/promisify.hpp"
#include "continuable/detail/other/testing.hpp"
#include "continuable/detail/transforms/future.hpp"
#include "continuable/detail/transforms/wait.hpp"
#include "continuable/detail/traversal/container-category.hpp"
#include "continuable/detail/traversal/range.hpp"
#include "continuable/detail/traversal/traverse-async.hpp"
#include "continuable/detail/traversal/traverse.hpp"
#include "continuable/detail/utility/identity.hpp"
#include "continuable/detail/utility/result-trait.hpp"
#include "continuable/detail/utility/result-variant.hpp"
#include "continuable/detail/utility/traits.hpp"
#include "continuable/detail/utility/util.hpp"
#include "continuable/external/asio.hpp"
#include "continuable/external/gtest.hpp"
#include "continuable/operations/async.hpp"
#include "continuable/operations/loop.hpp"
#include "continuable/operations/split.hpp"
#include "continuable/transforms/future.hpp"
#include "continuable/transforms/wait.hpp"