blob: adab2e6ded552f9401e9cc68c68bb516a3b37adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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'])
|