Skip to content

Commit

Permalink
Sync with drumstick 2.10
Browse files Browse the repository at this point in the history
bump version to 1.4.1
  • Loading branch information
pedrolcl committed Dec 27, 2024
1 parent 29df601 commit cff5fd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
cmake_minimum_required(VERSION 3.16)

project ( kmetronome
VERSION 1.4.0
VERSION 1.4.1
LANGUAGES CXX
DESCRIPTION "ALSA Sequencer based MIDI metronome"
HOMEPAGE_URL "https://kmetronome.sourceforge.io"
)

set(PROJECT_RELEASE_DATE "December 24, 2023")
#set(PROJECT_RELEASE_DATE "December 24, 2023")
option(BUILD_DOCS "Process Markdown sources of man pages and help files" ON)
option(EMBED_TRANSLATIONS "Embed translations instead of installing" OFF)
option(USE_QT5 "Prefer building with Qt5 instead of Qt6")
Expand All @@ -47,7 +47,7 @@ if(QT_FOUND)
message(STATUS "Found Qt version: ${QT_VERSION}")
endif()

find_package(Drumstick 2.9 COMPONENTS ALSA REQUIRED)
find_package(Drumstick 2.10 COMPONENTS ALSA REQUIRED)
if(Drumstick_FOUND)
message(STATUS "Found Drumstick version: ${Drumstick_VERSION}")
endif()
Expand Down
8 changes: 4 additions & 4 deletions src/sequenceradapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define SEQUENCERADAPTER_H

namespace drumstick {
class MidiPort;
class MidiQueue;
class SequencerEvent;
};
class MidiPort;
class MidiQueue;
class SequencerEvent;
} // namespace drumstick

#include <drumstick/alsaclient.h>

Expand Down

0 comments on commit cff5fd5

Please sign in to comment.