diff options
author | Nil Geisweiller <a-lin@sourceforge.net> | 2007-05-26 15:24:15 +0000 |
---|---|---|
committer | Nil Geisweiller <a-lin@sourceforge.net> | 2007-05-26 15:24:15 +0000 |
commit | 948e051e00ab4fff2d6314686daca11937c7e06f (patch) | |
tree | 5a7335712de642200f910fb261e7d85c954a5af7 | |
parent | d47e67d43f4675d022d728029c9a8da0a9bacd92 (diff) |
update check version for Qt and jack
-rw-r--r-- | muse/CMakeLists.txt | 10 | ||||
-rw-r--r-- | muse/ChangeLog | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/muse/CMakeLists.txt b/muse/CMakeLists.txt index 355f63d2..846db725 100644 --- a/muse/CMakeLists.txt +++ b/muse/CMakeLists.txt @@ -72,7 +72,7 @@ endif (APPLE) ## look for Qt4 ## -set(QT_MIN_VERSION "4.2.0") +set(QT_MIN_VERSION "4.3.0") set(QT_USE_QTXML TRUE) set(QT_USE_QTDESIGNER TRUE) set(QT_USE_QTNSPLUGIN TRUE) @@ -81,7 +81,7 @@ set(QT_USE_QTSVG TRUE) find_package(Qt4) if (NOT QT4_FOUND) - message(FATAL_ERROR "Fatal error: QT (version >= 4.2.0) required.\n" + message(FATAL_ERROR "Fatal error: QT (version >= 4.3.0) required.\n" "Cmake tries to detect QT4 by searching for 'qmake' in your PATH\n" "If you have QT4 installed, make sure qmake is found in your PATH." ) @@ -171,12 +171,12 @@ else (NOT SAMPLERATE_INCDIR) endif (NOT SAMPLERATE_INCDIR) ## -## find jack >= 0.102.1 +## find jack >= 0.103.0 ## -PKGCONFIG (jack 0.102.1 JACK_INCDIR JACK_LIBDIR JACK_LIB JACK_CPP ) +PKGCONFIG (jack 0.103.0 JACK_INCDIR JACK_LIBDIR JACK_LIB JACK_CPP ) if (NOT JACK_INCDIR) - message(FATAL_ERROR "Fatal error: JACK >= 0.102.1 required") + message(FATAL_ERROR "Fatal error: JACK >= 0.103.0 required") else (NOT JACK_INCDIR) message("Jack detected") endif (NOT JACK_INCDIR) diff --git a/muse/ChangeLog b/muse/ChangeLog index f6882672..fe0210c0 100644 --- a/muse/ChangeLog +++ b/muse/ChangeLog @@ -1,3 +1,5 @@ +26.05 (ng) + - update CMakeLists.txt to check that Qt4 > 4.3.0 and jack > 0.103.0 23.5. (ws) - midi import fixes 19.04 (ws) |