From 59d043403956b6f3fa017c055a44e3e5d1f4c678 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 13 Jan 2018 21:34:41 +0200 Subject: Removed two deprecations from 2016. --- docs/markdown/snippets/deprecations.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/markdown/snippets/deprecations.md (limited to 'docs/markdown/snippets') diff --git a/docs/markdown/snippets/deprecations.md b/docs/markdown/snippets/deprecations.md new file mode 100644 index 0000000..adab2e6 --- /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']) -- cgit v1.1