And for dirs with the same name as run_target()s Reproduces https://github.com/mesonbuild/meson/issues/1644pull/2191/head
parent
cae5caa7f1
commit
0c518a8077
23 changed files with 65 additions and 0 deletions
@ -0,0 +1 @@ |
||||
executable('test-PHONY', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-all', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-benchmark', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-clean-ctlist', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-clean-gcda', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-clean-gcno', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-clean', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-coverage-html', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-coverage-text', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-coverage-xml', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-coverage', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-dist', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-distcheck', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-install', '../test.c') |
@ -0,0 +1,28 @@ |
||||
project('reserved target names', 'c', |
||||
default_options : ['b_coverage=true']) |
||||
|
||||
subdir('all') |
||||
subdir('benchmark') |
||||
subdir('clean') |
||||
subdir('clean-ctlist') |
||||
subdir('clean-gcda') |
||||
subdir('clean-gcno') |
||||
subdir('coverage') |
||||
subdir('coverage-html') |
||||
subdir('coverage-text') |
||||
subdir('coverage-xml') |
||||
subdir('dist') |
||||
subdir('distcheck') |
||||
subdir('install') |
||||
subdir('phony') |
||||
subdir('PHONY') |
||||
subdir('reconfigure') |
||||
subdir('scan-build') |
||||
subdir('test') |
||||
subdir('uninstall') |
||||
|
||||
subdir('runtarget') |
||||
|
||||
custom_target('ctlist-test', output : 'out.txt', |
||||
command : ['echo'], capture : true, |
||||
build_by_default : true) |
@ -0,0 +1 @@ |
||||
executable('test-phony', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-reconfigure', '../test.c') |
@ -0,0 +1,2 @@ |
||||
configure_file(output : 'config.h', configuration: configuration_data()) |
||||
run_target('runtarget', command : ['echo']) |
@ -0,0 +1 @@ |
||||
executable('test-scan-build', '../test.c') |
@ -0,0 +1,3 @@ |
||||
int main(int argc, char *argv[]) { |
||||
return 0; |
||||
} |
@ -0,0 +1 @@ |
||||
executable('test-test', '../test.c') |
@ -0,0 +1 @@ |
||||
executable('test-uninstall', '../test.c') |
Loading…
Reference in new issue