readline/8.2

A set of functions for use by applications that allow users to edit command lines as they are typed in
Recipe info
GPL-3.0-only
2023-12-17

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
readline/8.2

Using readline

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
readline/8.2
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("readline/8.2")

    def layout(self):
        cmake_layout(self)

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:

  • CMake package name(s): readline
  • CMake target name(s): readline::readline
  • pkg-config file name(s): readline.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(readline REQUIRED)
# ...
target_link_libraries(YOUR_TARGET readline::readline)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the readline homepage listed above:

#include "readline/chardefs.h"
#include "readline/history.h"
#include "readline/keymaps.h"
#include "readline/readline.h"
#include "readline/rlconf.h"
#include "readline/rlstdc.h"
#include "readline/rltypedefs.h"
#include "readline/tilde.h"