The Meson Build System
http://mesonbuild.com/
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.
20 lines
517 B
20 lines
517 B
7 years ago
|
win = import('windows')
|
||
|
|
||
|
rc_writer = find_program('./gen-res.py')
|
||
|
|
||
7 years ago
|
rc_sources = []
|
||
|
|
||
|
foreach id : [1, 2]
|
||
|
rc_sources += custom_target('RC source file @0@'.format(id),
|
||
|
input : 'myres.rc.in',
|
||
|
output : 'myres_@0@.rc'.format(id),
|
||
|
command : [rc_writer, '@INPUT@', '@OUTPUT@', files('sample.ico')],
|
||
|
install : false,
|
||
7 years ago
|
build_always : false)
|
||
7 years ago
|
endforeach
|
||
|
|
||
|
rc_sources += files('myres_static.rc')
|
||
|
|
||
7 years ago
|
res = win.compile_resources(rc_sources,
|
||
|
include_directories: include_directories('.'))
|