123456789101112 |
- project('static lib', 'cpp')
- current_dir = include_directories('.')
- t2h = static_library('tedi2html', 'tedi2html.cpp', 'tedi2html.h', include_directories : current_dir)
- tedi2lang_dependency = dependency('tedi2lang', fallback : ['tedi2lang', 'tedi2lang_dependency'])
- tedi2html_dependency = declare_dependency(
- include_directories : [current_dir],
- link_with : [t2h],
- dependencies : [tedi2lang_dependency],
- sources : ['tedi2html.cpp', 'tedi2html.h'])
|