From c90d8b4458966e9908b82e8d786ff699089176c7 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 1 Nov 2020 22:57:22 +0200 Subject: Add ScaleForm widget --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 86acf5b..fde2360 100644 --- a/meson.build +++ b/meson.build @@ -22,13 +22,13 @@ mod_qt5 = import('qt5') dep_qt5 = dependency('qt5', modules: [ 'Core', 'Widgets' ], include_type: 'system') moc = mod_qt5.preprocess( - moc_headers: [ 'src/mainwindow.h' ], - ui_files: [ 'src/mainwindow.ui' ], + moc_headers: [ 'src/mainwindow.h', 'src/scaleform.h' ], + ui_files: [ 'src/mainwindow.ui', 'src/scaleform.ui' ], dependencies: dep_qt5 ) exe = executable('qimv', - sources: [ 'src/main.cpp', 'src/mainwindow.cpp', moc ], + sources: [ 'src/main.cpp', 'src/mainwindow.cpp', 'src/scaleform.cpp', moc ], dependencies: dep_qt5, install: true) -- cgit v1.2.1