summaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-01-13 21:34:41 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-01-14 20:16:48 +0200
commit268d900ed139ad9f5f8f03861417db4c15ebe400 (patch)
tree38835c94a36312d7c5b9107118923765e592f5e0 /docs/markdown
parent81100f0695c595f4c0020034284846cea7e8e6aa (diff)
downloadmeson-removedepr.tar.gz
Removed two deprecations from 2016.removedepr
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/snippets/deprecations.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/markdown/snippets/deprecations.md b/docs/markdown/snippets/deprecations.md
new file mode 100644
index 000000000..adab2e6de
--- /dev/null
+++ b/docs/markdown/snippets/deprecations.md
@@ -0,0 +1,14 @@
+## Removed two deprecated features
+
+The standalone `find_library` function has been a no-op for a long
+time. Starting with this version it becomes a hard error.
+
+There used to be a keywordless version of `run_target` which looked
+like this:
+
+ run_target('targetname', 'command', 'arg1', 'arg2')
+
+This is now an error. The correct format for this is now:
+
+ run_target('targetname',
+ command : ['command', 'arg1', 'arg2'])