parent
b06b8c6452
commit
59d0434039
5 changed files with 19 additions and 17 deletions
@ -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']) |
@ -1,4 +1,4 @@ |
||||
project('subfoo', 'c') |
||||
|
||||
executable('bar', 'bar.c') |
||||
run_target('nop', 'true') |
||||
run_target('nop', command : ['true']) |
||||
|
Loading…
Reference in new issue