alecAbstraction Layer for Escape Codes |
git clone git://git.dimitrijedobrota.com/alec.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
commit | 99d2f8a13cdc0cbfc0fc8b9d77c4590be3b73bb4 |
parent | c2e90999f4d46bb7fb5daaf8456036b76a5c36dc |
author | Dimitrije Dobrota <mail@dimitrijedobrota.com> |
date | Tue, 4 Feb 2025 15:05:35 +0100 |
Fix install directory and README function name
Diffstat:M | CMakeLists.txt | | | +-- |
M | README.md | | | ++-- |
M | cmake/install-rules.cmake | | | +- |
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -4,7 +4,7 @@ include(cmake/prelude.cmake)
project(
alec
VERSION 0.1.11
VERSION 0.1.12
DESCRIPTION "Abstraction Layer for Escape Codes"
HOMEPAGE_URL "git://git.dimitrijedobrota.com/alec.git"
LANGUAGES CXX
@@ -93,7 +93,6 @@ if(PROJECT_IS_TOP_LEVEL)
endif()
endif()
# ---- Developer mode ----
if(NOT alec_DEVELOPER_MODE)
diff --git a/README.md b/README.md
@@ -72,8 +72,8 @@ and don't need to be called.
| screen_restore | | Restore screen |
| cursor_show | | Show cursor |
| cursor_hide | | Hide cursor |
| abuf_show | | Enable alternate screen buffer |
| abuf_hide | | Disable alternate screen buffer |
| abuf_enable | | Enable alternate screen buffer |
| abuf_disable | | Disable alternate screen buffer |
| paste_enable | | Turn on bracketed paste mode |
| paste_disable | | Turn off bracketed paste mode |
diff --git a/cmake/install-rules.cmake b/cmake/install-rules.cmake
@@ -16,7 +16,7 @@ include(GNUInstallDirs)
set(package alec)
install(
DIRECTORY include/
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
COMPONENT alec_Development
)