You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
526 B
23 lines
526 B
4 months ago
|
# dot_png: list of PNG targets
|
||
|
# dot_map: list of MAP targets
|
||
|
foreach name, infile: dot_gv
|
||
|
dot_png += custom_target(
|
||
|
name + '.png',
|
||
|
command: [ dot, '-Tpng', '-o@OUTPUT@', '@INPUT@' ],
|
||
|
input: infile,
|
||
|
output: name + '.png',
|
||
|
install: true,
|
||
|
install_dir: join_paths(publican_install_prefix, publican_html_dir, 'images')
|
||
|
)
|
||
|
|
||
|
dot_map += custom_target(
|
||
|
name + '.map',
|
||
|
command: [ dot, '-Tcmapx_np', '-o@OUTPUT@', '@INPUT@' ],
|
||
|
input: infile,
|
||
|
output: name + '.map',
|
||
|
)
|
||
|
endforeach
|
||
|
|
||
|
subdir('Client')
|
||
|
subdir('Server')
|