Merge Lisp branch
Build and Deploy Docs / build (push) Failing after 1m24s

This commit is contained in:
Arthur Barraux
2025-10-05 22:05:21 +02:00
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -4,17 +4,17 @@ Beluga is a project of CLI text editor that will fit perfectly with your azerty
## Requirements ## Requirements
You will only need **make** or **gcc** to compile the editor. You will only need **cmake** and **clang** to compile the editor.
## Installation ## Installation
Here is the installation line : Here is the installation line for development version:
```git clone --branch V1.0 --single-branch https://github.com/le-cocotier/beluga.git ~/.beluga && cd ~/.beluga && make build``` ```git clone --recurse-submodules https://github.com/le-cocotier/beluga.git ~/.beluga && cd ~/.beluga && mkdir build && cd build && cmake ../ && make beluga```
The executable file will be in `bin/beluga`. Feel free to add it to your path. The executable file will be in `bin/beluga`. Feel free to add it to your path.
You can either run `make all` if you're interested by the doxygen documentation. You can either run `make all` or `make doc_doxygen` if you're interested by the doxygen documentation.
## Getting start ## Getting start
+1 -1
View File
@@ -24,6 +24,6 @@ enum editorKey {
#define ABUF_INIT {NULL, 0} #define ABUF_INIT {NULL, 0}
#define BELUGA_VERSION "1.0" #define BELUGA_VERSION "1.1"
#endif // DEFINE_H_ #endif // DEFINE_H_
+1 -1
View File
@@ -1,5 +1,5 @@
project('beluga', 'c', project('beluga', 'c',
version : '1.0.0', version : '1.1',
default_options : [ default_options : [
'c_std=none', 'c_std=none',
] ]