aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Dependencies.md
diff options
context:
space:
mode:
authorAnton Leontiev <scileont@gmail.com>2019-10-19 00:26:37 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-10-19 19:14:10 +0300
commitddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8 (patch)
treedeb727d2ec2e9da1cdf7451d0e9fb4da70f18b4d /docs/markdown/Dependencies.md
parent998a1f5fa3f7e86ce3902544bc61f54c9709926b (diff)
downloadmeson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.zip
meson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.tar.gz
meson-ddd7cf634b6c691c656b59ee44ff9c35c3c5d5b8.tar.bz2
docs: Add missing language identifier [skip ci]
Diffstat (limited to 'docs/markdown/Dependencies.md')
-rw-r--r--docs/markdown/Dependencies.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md
index 9672887..49c0962 100644
--- a/docs/markdown/Dependencies.md
+++ b/docs/markdown/Dependencies.md
@@ -315,7 +315,8 @@ as getting it to work standalone is tricky.
You can set the `main` keyword argument to `true` to use the `main()`
function provided by GTest:
-```
+
+```meson
gtest_dep = dependency('gtest', main : true, required : false)
e = executable('testprog', 'test.cc', dependencies : gtest_dep)
test('gtest test', e)