This commit is contained in:
@@ -4,17 +4,17 @@ Beluga is a project of CLI text editor that will fit perfectly with your azerty
|
||||
|
||||
## Requirements
|
||||
|
||||
You will only need **make** or **gcc** to compile the editor.
|
||||
You will only need **cmake** and **clang** to compile the editor.
|
||||
|
||||
## 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.
|
||||
|
||||
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
|
||||
|
||||
|
||||
+1
-1
@@ -24,6 +24,6 @@ enum editorKey {
|
||||
|
||||
#define ABUF_INIT {NULL, 0}
|
||||
|
||||
#define BELUGA_VERSION "1.0"
|
||||
#define BELUGA_VERSION "1.1"
|
||||
|
||||
#endif // DEFINE_H_
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
project('beluga', 'c',
|
||||
version : '1.0.0',
|
||||
version : '1.1',
|
||||
default_options : [
|
||||
'c_std=none',
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user