meson.build 462 B

123456789101112
  1. project('static lib', 'cpp')
  2. current_dir = include_directories('.')
  3. t2h = static_library('tedi2html', 'tedi2html.cpp', 'tedi2html.h', include_directories : current_dir)
  4. tedi2lang_dependency = dependency('tedi2lang', fallback : ['tedi2lang', 'tedi2lang_dependency'])
  5. tedi2html_dependency = declare_dependency(
  6. include_directories : [current_dir],
  7. link_with : [t2h],
  8. dependencies : [tedi2lang_dependency],
  9. sources : ['tedi2html.cpp', 'tedi2html.h'])