We can't support generated XML files with custom_target() because the dependency scanning happens at configure time, but we *can* support generating them with configure_file(). Closes https://github.com/mesonbuild/meson/issues/1380pull/1403/head
parent
cb0aa6a83a
commit
dabf0c1882
3 changed files with 25 additions and 5 deletions
@ -0,0 +1,6 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
import sys |
||||
import shutil |
||||
|
||||
shutil.copy(sys.argv[1], sys.argv[2]) |
Loading…
Reference in new issue