From 6bd20d386024bbe35e899c57988d088cc3070814 Mon Sep 17 00:00:00 2001 From: Zeioth Date: Sat, 23 Mar 2024 03:58:29 +0100 Subject: [PATCH 1/2] added: meson --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 15c6579..ba7d064 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,7 @@ If any of these files exist in your current working directory, they will be auto | [CMakeLists.txt](https://github.com/Zeioth/compiler.nvim/blob/main/lua/compiler/bau/cmake.lua) | [+info](https://github.com/Zeioth/Compiler.nvim/wiki/CMake-build-automation-utility) | | [build.gradle](https://github.com/Zeioth/compiler.nvim/blob/main/lua/compiler/bau/gradle.lua) | [+info](https://github.com/Zeioth/Compiler.nvim/wiki/gradle-build-automation-utility) | | [package.json](https://github.com/Zeioth/compiler.nvim/blob/main/lua/compiler/bau/nodejs.lua) | [+info](https://github.com/Zeioth/Compiler.nvim/wiki/nodejs-build-automation-utility) | +| [meson.build](https://github.com/Zeioth/compiler.nvim/blob/main/lua/compiler/bau/meson.lua) | [+info](https://github.com/Zeioth/Compiler.nvim/wiki/meson-build-automation-utility) | ## Quick start Create `~/c-example/main.c` and paste this code. Then do `:cd ~/c-example/` to change the working directory to the project. @@ -218,7 +219,7 @@ If you want to help me, please star this repository to increase the visibility o ## Roadmap * `rust, go, swift` require the user to initialize the package before using its respective cli `cargo, go, swift`. Let's explain this on `+more info`. → Let's evaluate the pros and cons of auto initializing a package if do not exist already, so this process is automatic. -* `Building systems → meson` is planned. Auto discovery of options defined by the user is planned. +* `Building systems → meson`. We support it, but we don't currently support Ninja, so there is no way to run the targets, only building them. * `cli → pip` look for improvements. * `cli → cargo` look for improvements. * `cli → dart pub` look for improvements. From 0043625712e7e91653c67399e647564035de2f31 Mon Sep 17 00:00:00 2001 From: Zeioth Date: Sat, 23 Mar 2024 03:59:38 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ba7d064..80db728 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,6 @@ If you want to help me, please star this repository to increase the visibility o ## Roadmap * `rust, go, swift` require the user to initialize the package before using its respective cli `cargo, go, swift`. Let's explain this on `+more info`. → Let's evaluate the pros and cons of auto initializing a package if do not exist already, so this process is automatic. -* `Building systems → meson`. We support it, but we don't currently support Ninja, so there is no way to run the targets, only building them. * `cli → pip` look for improvements. * `cli → cargo` look for improvements. * `cli → dart pub` look for improvements.