Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,6 @@ repos:
hooks:
- id: clang-format
types_or: [c++, c, cuda]
- repo: local
hooks:
- id: clang-tidy
name: clang-tidy
language: system
entry: clang-tidy -p build/compile_commands.json -extra-arg=-std=c++20
files: cpp
exclude: "^build/"
- repo: https://github.com/cmake-lint/cmake-lint
rev: 1.4.3
hooks:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### main/HEAD
* Add new Cursor::move overload to accept two integers
* Handle bug in border rendering crashing with no lines of text
* Removed zig build system

### v4.0.7
* Added unit testing in `tests/` directory
Expand Down
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ Documentation is mostly provided in the `docs/` directory, where every header
file has a partner mardown file to describe it's methods usecases.

### How to use
As of `v4.0.0`, rawterm can be imported with cmake fetchcontent. Add the
following passage to your CMakeLists.txt file then link to the `rawterm`
library using `target_link_libraries`
Add the following passage to your CMakeLists.txt file then link to the
`rawterm` library using `target_link_libraries`

```cmake
include(FetchContent)
Expand All @@ -19,14 +18,6 @@ fetchcontent_declare(
fetchcontent_makeavailable(rawterm)
```

Alternatively, if you use `zig` as your build system, you can run

```console
zig fetch --save=rawterm git+https://github.com/ttibsi/rawterm
```

This has only been tested with zig 0.13.0

#### Example
A minimal hello world example looks like this:

Expand Down
76 changes: 0 additions & 76 deletions build.zig

This file was deleted.

Loading