diff --git a/README.md b/README.md index 10c0e68..98382c1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/include/define.h b/include/define.h index c0f2fb3..3ff01e1 100644 --- a/include/define.h +++ b/include/define.h @@ -24,6 +24,6 @@ enum editorKey { #define ABUF_INIT {NULL, 0} -#define BELUGA_VERSION "1.0" +#define BELUGA_VERSION "1.1" #endif // DEFINE_H_ diff --git a/meson.build b/meson.build index fdf2d2c..c0bb004 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('beluga', 'c', - version : '1.0.0', + version : '1.1', default_options : [ 'c_std=none', ]