diff options
Diffstat (limited to 'hvac/meson.build')
-rw-r--r-- | hvac/meson.build | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/hvac/meson.build b/hvac/meson.build new file mode 100644 index 0000000..ce3679c --- /dev/null +++ b/hvac/meson.build @@ -0,0 +1,22 @@ +qt5_dep = dependency('qt5', modules: ['Qml']) + +moc_files = qt5.compile_moc(headers: 'hvac.h', + dependencies: qt5_dep) + +src = ['hvac.cpp', moc_files] +lib = shared_library('qtappfw-hvac', + sources: src, + version: '1.0.0', + soversion: '0', + dependencies: [qt5_dep, qtappfw_vs_dep], + install: true) + +install_headers('hvac.h') + +pkg_mod = import('pkgconfig') +pkg_mod.generate(libraries : lib, + version : '1.0', + name : 'libqtappfw-hvac', + filebase : 'qtappfw-hvac', + requires: 'Qt5Qml', + description : 'AGL Qt demo app framework helper library for using HVAC.') |