From 1469ddf6416202a5a62a931cda2e2aac3e43687e Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Tue, 25 Feb 2020 13:14:50 +0800 Subject: [PATCH] Add Meson guide --- Project-Setup.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Project-Setup.md b/Project-Setup.md index 60531b1..2abaf22 100644 --- a/Project-Setup.md +++ b/Project-Setup.md @@ -68,6 +68,12 @@ intercept-build make all # generates compile_commands.json from the `make all` r ninja -C out/Release -t compdb cxx cc > compile_commands.json ``` +### [Meson](https://http://mesonbuild.com//) + +```zsh +meson build # generates compile_commands.json in the `build` directory +``` + ### [GN](https://gn.googlesource.com/gn/) ```zsh