]> git.sesse.net Git - nageru/commitdiff
Move controller_spin_box.h to shared, so that the upcoming Futatabi MIDI editor can...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 19 Jan 2019 12:18:24 +0000 (13:18 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 19 Jan 2019 12:18:24 +0000 (13:18 +0100)
meson.build
nageru/midi_mapping_dialog.cpp
shared/controller_spin_box.h [moved from nageru/controller_spin_box.h with 100% similarity]
shared/meson.build

index c66d4a7b5fe7cc9838e3081d682c52802d5bbd96..193901edb4bf3cb224672d8a4197eb8fa6f4615d 100644 (file)
@@ -169,7 +169,7 @@ nageru_link_with += protobuf_lib
 qt_files = qt5.preprocess(
        moc_headers: ['nageru/analyzer.h', 'nageru/clickable_label.h', 'nageru/compression_reduction_meter.h', 'nageru/correlation_meter.h',
                'nageru/ellipsis_label.h', 'nageru/glwidget.h', 'nageru/input_mapping_dialog.h', 'nageru/lrameter.h', 'nageru/mainwindow.h', 'nageru/midi_mapping_dialog.h',
-               'nageru/nonlinear_fader.h', 'nageru/vumeter.h', 'nageru/controller_spin_box.h'],
+               'nageru/nonlinear_fader.h', 'nageru/vumeter.h'],
        ui_files: ['nageru/analyzer.ui', 'nageru/audio_expanded_view.ui', 'nageru/audio_miniview.ui', 'nageru/display.ui',
                'nageru/input_mapping.ui', 'nageru/mainwindow.ui', 'nageru/midi_mapping.ui'],
        dependencies: qt5deps)
index a5c1126a3ae5664f06c16676d2b57f4a4f1b19aa..d27a0c2315e18c56f0c6005d0ef3d078d291fbf2 100644 (file)
@@ -18,7 +18,7 @@
 #include <limits>
 #include <string>
 
-#include "controller_spin_box.h"
+#include "shared/controller_spin_box.h"
 #include "midi_mapper.h"
 #include "nageru_midi_mapping.pb.h"
 #include "shared/midi_mapper_util.h"
index 082e4f515ed305f771a1c9dec406ef6482870400..4692d0114d1b9243aaeaf4675f8c427a65337a8d 100644 (file)
@@ -6,7 +6,7 @@ alsadep = dependency('alsa')
 
 # Preprocess Qt as needed.
 qt_files = qt5.preprocess(
-       moc_headers: ['aboutdialog.h'],
+       moc_headers: ['aboutdialog.h', 'controller_spin_box.h'],
        ui_files: ['aboutdialog.ui'],
        dependencies: shared_qt5deps)