X-Git-Url: https://rtime.felk.cvut.cz/gitweb/orte.git/blobdiff_plain/c6d7b6de7c228e9d738de895594689866478f97a..82c138a2087b72c78058a9eec2eff9c8c92a9627:/orte/idl-compiler/meson.build diff --git a/orte/idl-compiler/meson.build b/orte/idl-compiler/meson.build new file mode 100644 index 0000000..647ea44 --- /dev/null +++ b/orte/idl-compiler/meson.build @@ -0,0 +1,24 @@ +orte_idl = executable( + 'orte-idl', + [ + 'orte-idl-main.c', + 'orte-idl-driver.c', + 'orte-idl-utils.c', + 'orte-idl-c-backend.c', + 'orte-idl-c-headers.c', + 'orte-idl-c-impls.c', + 'orte-idl-c-utils.c', + ], + dependencies: [ + dependency('popt'), + dependency('libIDL-2.0'), + ], + install: true, +) + +# TODO: Add support for output directory to orte-idl +gen_orte_idl = generator( + orte_idl, + output: ['@BASENAME@.c', '@BASENAME@.h'], + arguments : ['@INPUT@'], +)