##// END OF EJS Templates
Removed side bars which were too big......
Removed side bars which were too big... Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1355:a29174c00b30
r1375:0dd942c2cda8
Show More
meson.build
32 lines | 1.0 KiB | text/plain | TextLexer
Added Meson support....
r620
mockplugin_moc_headers = [
'include/MockPlugin.h'
]
mockplugin_sources = [
Alexandre Leroux
Fixes meson build
r796 'src/MockDefs.cpp',
Added Meson support....
r620 'src/CosinusProvider.cpp',
'src/MockPlugin.cpp'
]
Added fuzzy tests and small fixes on meson files...
r1333 mockplugin_inc = include_directories(['include'])
Added Meson support....
r620
gen = generator(moc,
output : 'moc_@BASENAME@.cpp',
arguments : ['@INPUT@',
'-DPLUGIN_JSON_FILE_PATH="'+meson.source_root()+'/plugins/mockplugin/resources/mockplugin.json"',
'-I', meson.current_source_dir()+'/include',
Added fuzzy tests and small fixes on meson files...
r1333 '-I', meson.current_source_dir()+'/../../core/include/',
Added Meson support....
r620 '-o', '@OUTPUT@'])
mockplugin_moc_files = gen.process(mockplugin_moc_headers)
sciqlop_mockplugin = library('mockplugin',
mockplugin_sources,
mockplugin_moc_files,
cpp_args : '-DMOCKPLUGIN_LIB',
Some Meson improvements, now declare dependency for each lib...
r662 include_directories : [mockplugin_inc],
dependencies : [sciqlop_core, sciqlop_gui],
Added Meson support....
r620 install : true
)