From d4a4b0982b387bb830b98aa187c621df51043e0f Mon Sep 17 00:00:00 2001 From: Randolf Richardson Date: Sat, 8 Oct 2022 20:08:05 -0700 Subject: [PATCH 1/2] Update README.md Added instructions for installing and using on Debian 11 (Linux). --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b7104750..b5ac76b8 100644 --- a/README.md +++ b/README.md @@ -442,6 +442,16 @@ You can download and install `moodycamel::ConcurrentQueue` using the [vcpkg](htt The `moodycamel::ConcurrentQueue` port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. +## Using apt on Debian 11 (Linux) +You can download and install 'moodycamel::ConcurrentQueue' in one step using aptitutde: + + apt install libconcurrentqueue-dev + +Include one or both of the following include lines in your C++ source code: + + #include + #include + ## License I'm releasing the source of this repository (with the exception of third-party code, i.e. the Boost queue From 871de183182a54ef32d26518518a3fb69f536138 Mon Sep 17 00:00:00 2001 From: Randolf Richardson Date: Mon, 15 May 2023 14:07:06 -0700 Subject: [PATCH 2/2] Update README.md Fixed spelling of "aptitude" (thanks to @MrMetric for catching this). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5ac76b8..8964d1c7 100644 --- a/README.md +++ b/README.md @@ -443,7 +443,7 @@ You can download and install `moodycamel::ConcurrentQueue` using the [vcpkg](htt The `moodycamel::ConcurrentQueue` port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. ## Using apt on Debian 11 (Linux) -You can download and install 'moodycamel::ConcurrentQueue' in one step using aptitutde: +You can download and install 'moodycamel::ConcurrentQueue' in one step using aptitude: apt install libconcurrentqueue-dev